/* ==========================================================================
   Yallareja.com — Girls & Trip
   Pixel-perfect responsive stylesheet
   ========================================================================== */

/* ----------  CSS Variables  ---------- */
:root {
    /* Brand palette */
    --olive: #6F7453;
    --olive-700: #5e6346;
    --olive-900: #3D4029;
    --sand: #EDE4D7;
    --sand-2: #F1E9DC;
    --ivory: #F8F5F0;
    --ivory-2: #FBF8F3;
    --rose: #C98C8C;
    --rose-700: #b87a7a;
    --cocoa: #3D342E;
    --cocoa-soft: #59504A;

    /* UI */
    --line: #E4D9C7;
    --line-2: #ECE2D2;
    --white: #FFFFFF;
    --whatsapp: #25D366;

    /* Type */
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    /* Spacing & radii */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(61, 52, 46, .04), 0 2px 6px rgba(61, 52, 46, .05);
    --shadow-md: 0 6px 24px rgba(61, 52, 46, .08);
    --shadow-card: 0 2px 12px rgba(61, 52, 46, .06);

    --container: 1200px;
    --header-h: 78px;
}

/* ----------  Reset  ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.55;
    color: var(--cocoa);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 600;
    color: var(--cocoa);
    letter-spacing: .2px;
}

p {
    margin: 0;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

/* ----------  Buttons  ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    padding: 13px 22px;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive);
}

.btn-primary:hover {
    background: var(--olive-700);
    border-color: var(--olive-700);
}

.btn-outline {
    background: #fff;
    color: var(--cocoa);
    border: 1px solid var(--line);
}

.btn-outline:hover {
    border-color: var(--olive);
}

.btn-rose {
    background: var(--rose);
    color: #fff;
    border-color: var(--rose);
}

.btn-rose:hover {
    background: var(--rose-700);
    border-color: var(--rose-700);
}

.btn-sm {
    padding: 11px 18px;
    font-size: 12.5px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 245, 240, .92);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid transparent;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .96);
    border-bottom-color: var(--line-2);
    box-shadow: 0 2px 14px rgba(61, 52, 46, .06);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    color: var(--olive);
    line-height: 0;
}

.logo-img {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
}

.site-footer .logo-img {
    height: 44px;
}

/* Nav */
.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
}

.primary-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--cocoa);
    position: relative;
    padding: 6px 0;
    transition: color .2s ease;
}

.primary-nav a:hover {
    color: var(--olive);
}

.primary-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1.5px;
    background: var(--olive);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.primary-nav a:hover::after {
    transform: scaleX(1);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 211, 102, .35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-circle svg {
    width: 18px;
    height: 18px;
}

.whatsapp-circle:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, .45);
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 1.6px;
    background: var(--cocoa);
    border-radius: 2px;
}

/* ==========================================================================
   HERO  (rounded card with image on right + ivory→transparent gradient)
   ========================================================================== */
.hero {
    background: var(--ivory);
    padding: 16px 0;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    isolation: isolate;
    min-height: clamp(460px, 60vh, 600px);
    display: flex;
    align-items: center;
    background: var(--ivory);
    box-shadow: 0 4px 18px rgba(61, 52, 46, 0.04);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* wide ivory veil tapering through the seam zone for a seamless blend */
    background: linear-gradient(to right,
            rgba(248, 245, 240, 1) 0%,
            rgba(248, 245, 240, 1) 28%,
            rgba(248, 245, 240, 0.85) 36%,
            rgba(248, 245, 240, 0.45) 44%,
            rgba(248, 245, 240, 0.0) 55%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5px clamp(25px, 6vw, 7px);
}

.hero-copy {
    max-width: 560px;
}

.hero-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(54px, 7vw, 92px);
    line-height: 0.95;
    color: var(--cocoa);
    letter-spacing: -1px;
}

.hero-title .line-1 {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.hero-title .line-2 {
    display: block;
    color: var(--rose);
    margin-top: 2px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.hero-divider {
    display: block;
    width: 56px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
    margin: 22px 0 0;
    opacity: .9;
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
}

.hand-heart {
    width: 48px;
    height: 42px;
    flex: none;
    transform: translateY(4px) rotate(-6deg);
}

.hand-heart.sm {
    width: 26px;
    height: 24px;
}

.hand-heart.xs {
    width: 22px;
    height: 20px;
}

.hero-desc {
    color: var(--cocoa-soft);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 22px;
    max-width: 420px;
}

.hero-desc+.hero-desc {
    margin-top: 14px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FEATURES BAR
   ========================================================================== */
.features-bar {
    padding: 0;
    position: relative;
    margin-top: 0;
}

.features-grid {
    background: var(--sand);
    border-radius: var(--r-md);
    padding: 18px 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

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

.feature-ic {
    flex: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--olive);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-ic svg {
    width: 100px;
    height: 100px;
}

.feature-item h4 {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--cocoa);
    margin-bottom: 2px;
    letter-spacing: .1px;
    line-height: 1.25;
}

.feature-item p {
    font-size: 10.5px;
    color: var(--cocoa-soft);
    line-height: 1.45;
}

/* ==========================================================================
   SEARCH
   ========================================================================== */
.search-section {
    padding: 56px 0 16px;
}

.section-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.15;
    color: var(--cocoa);
    letter-spacing: .2px;
}

.section-title.centered {
    text-align: center;
}

.section-title.with-plane {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.plane-trail {
    width: 110px;
    height: 26px;
}

.search-card {
    background: var(--sand);
    border-radius: var(--r-md);
    padding: 22px 22px 18px;
    box-shadow: var(--shadow-sm);
}

.search-title {
    font-size: 22px;
    margin-bottom: 14px;
}

.search-bar {
    background: transparent;
    padding: 0;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.2fr auto;
    gap: 12px;
    align-items: center;
}

.search-field {
    position: relative;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: var(--r-sm);
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 15px 0 60px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.search-field:focus-within {
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(111, 116, 83, .12);
}

.field-ic {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--olive);
    display: inline-flex;
}

.field-ic svg {
    width: 32px;
    height: 32px;
    color: var(--rose);
}

.search-field select {
    appearance: none;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 13px;
    color: var(--cocoa);
    width: 100%;
    height: 100%;
    padding-right: 24px;
    outline: none;
    cursor: pointer;
}

.field-caret {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cocoa-soft);
    pointer-events: none;
    display: inline-flex;
}

.field-caret svg {
    width: 14px;
    height: 14px;
}

.search-btn {
    height: 48px;
    padding: 0 28px;
    font-size: 13px;
}

/* ==========================================================================
   FEATURED TRIPS
   ========================================================================== */
.featured-trips {
    padding: 64px 0 32px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--cocoa);
    transition: color .2s ease;
}

.view-all:hover {
    color: var(--olive);
}

.view-all svg {
    width: 14px;
    height: 14px;
}

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

.trip-card {
    background: #fff;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(61, 52, 46, .10);
}

.trip-media {
    position: relative;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: var(--sand);
}

.trip-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

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

.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10.5px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff;
    letter-spacing: .2px;
    text-transform: none;
}

.tag-rose {
    background: var(--rose);
}

.tag-olive {
    background: var(--olive);
}

.tag-sand {
    background: var(--sand);
    color: var(--cocoa);
}

.trip-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.trip-body h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: var(--cocoa);
}

.trip-route {
    font-size: 12px;
    color: var(--cocoa-soft);
}

.trip-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--cocoa-soft);
    margin-top: 2px;
}

.trip-meta svg {
    width: 14px;
    height: 14px;
    color: var(--olive);
}

.trip-price {
    font-size: 12px;
    color: var(--cocoa-soft);
    margin-top: auto;
    padding-top: 6px;
}

.trip-price strong {
    color: var(--rose);
    font-weight: 700;
    font-size: 13px;
}

/* ==========================================================================
   WHY TRAVEL
   ========================================================================== */
.why-travel {
    padding: 72px 0 32px;
}

.why-grid {
    display: grid;
    grid-template-columns: 3fr 6fr 3fr;
    gap: 36px;
    align-items: start;
}

.why-copy .section-title {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

.why-lead {
    margin-top: 16px;
    color: var(--cocoa-soft);
    font-size: 13px;
    line-height: 1.7;
}

.why-copy .btn {
    margin-top: 22px;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 18px;
    padding-top: 4px;
}

.why-features li {
    display: flex;
    column-gap: 12px;
    flex-direction: column;
    text-align: center;
}

.why-ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--rose);
    background: transparent;
    color: var(--rose);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.why-ic svg {
    width: 18px;
    height: 18px;
}

.why-features h5 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12.5px;
    color: var(--cocoa);
}

.why-features p {
    font-size: 11.5px;
    color: var(--cocoa-soft);
    line-height: 1.55;
}

.why-media {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 1 / 1.05;
    background: var(--sand);
    box-shadow: var(--shadow-card);
}

.why-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    padding: 72px 0 24px;
}

.testimonials .section-title {
    margin-bottom: 32px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: #fff;
    border: 0;
    border-radius: var(--r-md);
    padding: 26px 22px 20px;
    position: relative;
    box-shadow: 0 2px 14px rgba(61, 52, 46, .06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 170px;
}

.quote-mark {
    position: absolute;
    top: 14px;
    left: 18px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    line-height: 1;
    color: var(--rose);
    font-weight: 700;
}

.quote-text {
    font-size: 13px;
    color: var(--cocoa);
    line-height: 1.6;
    margin-top: 18px;
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.quote-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
    border: 2px solid var(--ivory);
    box-shadow: 0 0 0 1px var(--line-2);
}

.quote-author h6 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12.5px;
    color: var(--cocoa);
    margin-bottom: 2px;
}

.quote-author span {
    font-size: 11px;
    color: var(--cocoa-soft);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 22px;
}

.dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--line);
    transition: background .2s ease, width .2s ease;
    cursor: pointer;
}

.dots .dot.active {
    background: var(--rose);
    width: 18px;
    border-radius: 4px;
}

/* ==========================================================================
   FOLLOW THE JOURNEY
   ========================================================================== */
.follow-journey {
    padding: 64px 0 32px;
}

.follow-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.section-title.sm {
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.follow-sub {
    font-size: 12.5px;
    color: var(--cocoa-soft);
    margin-top: 4px;
}

.ig-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: var(--r-pill);
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--cocoa);
    transition: border-color .2s ease;
}

.ig-handle:hover {
    border-color: var(--rose);
}

.ig-handle svg {
    width: 16px;
    height: 16px;
    color: var(--rose);
}

.gallery-wrap {
    position: relative;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    overflow: hidden;
}

.gallery li {
    aspect-ratio: 1 / 1;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--sand);
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery li:hover img {
    transform: scale(1.05);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(61, 52, 46, .15);
    color: var(--cocoa);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform .2s ease, color .2s ease;
}

.gallery-arrow:hover {
    color: var(--olive);
    transform: translateY(-50%) scale(1.05);
}

.gallery-arrow svg {
    width: 16px;
    height: 16px;
}

.gallery-arrow.prev {
    left: -10px;
}

.gallery-arrow.next {
    right: -10px;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section {
    padding: 64px 0 72px;
}

.cta-card {
    background: var(--sand);
    border-radius: var(--r-lg);
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.1fr;
    gap: 36px;
    align-items: start;
}

.cta-left .section-title {
    font-size: 24px;
    line-height: 1.2;
}

.cta-left p {
    font-size: 12.5px;
    color: var(--cocoa-soft);
    margin-top: 10px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 4px;
}

.cta-features li {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-ic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .65);
    color: var(--olive);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-ic svg {
    width: 18px;
    height: 18px;
}

.cta-features h5 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    color: var(--cocoa);
}

.cta-features p {
    font-size: 10.5px;
    color: var(--cocoa-soft);
    line-height: 1.5;
}

.cta-right h3 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    color: var(--cocoa);
    margin-bottom: 4px;
}

.cta-right>p {
    font-size: 11.5px;
    color: var(--cocoa-soft);
    margin-bottom: 14px;
}

.newsletter {
    display: flex;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: var(--r-pill);
    padding: 4px 4px 4px 16px;
    align-items: center;
}

.newsletter input {
    flex: 1;
    border: 0;
    outline: none;
    font: inherit;
    font-size: 12.5px;
    color: var(--cocoa);
    background: transparent;
    height: 36px;
}

.newsletter .btn {
    height: 36px;
    padding: 0 18px;
    font-size: 12px;
    border-radius: var(--r-pill);
}

.empower {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(201, 140, 140, .35);
}

.camel {
    width: 80px;
    height: 46px;
    flex: none;
}

.empower-text {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--rose);
    line-height: 1.3;
}

.empower-text em {
    font-style: italic;
    font-weight: 600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--ivory-2);
    border-top: 1px solid var(--line-2);
    padding: 40px 0 26px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
    position: relative;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-blurb {
    font-size: 11.5px;
    color: var(--cocoa-soft);
    line-height: 1.65;
    max-width: 280px;
    margin-bottom: 14px;
}

.socials {
    display: flex;
    gap: 8px;
}

.socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--olive);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.socials a:hover {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive);
}

.socials svg {
    width: 14px;
    height: 14px;
}

.footer-col h6 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12.5px;
    color: var(--cocoa);
    margin-bottom: 12px;
    letter-spacing: .3px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a,
.footer-contact li {
    font-size: 11.5px;
    color: var(--cocoa-soft);
    transition: color .2s ease;
}

.footer-col a:hover {
    color: var(--olive);
}

.footer-pyramids {
    position: absolute;
    right: 16px;
    bottom: 0;
    width: 220px;
    height: auto;
    pointer-events: none;
}

/* ----------  WhatsApp Floating Button  ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
    transition: transform .3s ease, box-shadow .3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes whatsappPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ----------  Tour Details Page  ---------- */
.tour-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: var(--r-xl);
    margin: 16px 0 32px;
}

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

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,27,24,.75) 0%, rgba(27,27,24,.4) 50%, rgba(27,27,24,.15) 100%);
}

.tour-hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 48px;
    color: #fff;
    width: 100%;
}

.tour-hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
    margin: 0 0 8px;
    line-height: 1.15;
}

.tour-hero-content .tour-subtitle {
    font-size: 15px;
    opacity: .9;
    margin: 0 0 16px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.tour-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.tour-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-hero-meta svg {
    width: 18px;
    height: 18px;
}

.tour-content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    margin-bottom: 48px;
}

.tour-main-col section {
    margin-bottom: 32px;
}

.tour-section-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--cocoa);
    margin: 0 0 16px;
}

/* Itinerary timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 28px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--line);
}

.itinerary-day {
    position: relative;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
}

.itinerary-day::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rose);
    border: 2px solid var(--ivory);
}

.itinerary-day h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--cocoa);
}

.itinerary-day .day-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--rose);
    margin-bottom: 6px;
}

.itinerary-day p {
    font-size: 13px;
    color: var(--cocoa-soft);
    margin: 0;
}

.itinerary-day .location-name {
    font-size: 12px;
    color: var(--olive);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.itinerary-day .location-name svg {
    width: 14px;
    height: 14px;
}

/* Leaflet map */
#itinerary-map {
    height: 400px;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Includes / Excludes */
.includes-excludes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ie-list h5 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 12px;
}

.ie-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ie-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--cocoa-soft);
}

.ie-list .ie-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 1px;
}

.ie-list.includes .ie-icon {
    background: rgba(111, 116, 83, .12);
    color: var(--olive);
}

.ie-list.excludes .ie-icon {
    background: rgba(201, 140, 140, .12);
    color: var(--rose);
}

/* Tour gallery grid */
.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.tour-gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--r-sm);
    transition: transform .3s ease;
}

.tour-gallery-grid img:hover {
    transform: scale(1.03);
}

/* Sticky booking card */
.booking-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    align-self: start;
}

.booking-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.booking-card .price-tag {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--cocoa);
    margin: 0 0 4px;
}

.booking-card .price-tag small {
    font-size: 14px;
    font-weight: 400;
    color: var(--cocoa-soft);
}

.booking-card .book-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--cocoa-soft);
}

.booking-card .book-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.booking-card .book-details svg {
    width: 18px;
    height: 18px;
    color: var(--olive);
    flex-shrink: 0;
}

.booking-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

/* Related trips */
.related-trips {
    margin-top: 48px;
    margin-bottom: 48px;
}

/* Trips listing page */
.trips-listing {
    padding: 32px 0 48px;
}

.trips-listing .section-head {
    margin-bottom: 24px;
}

.trips-filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.trips-filter-bar select {
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    font-family: var(--sans);
    font-size: 13px;
    background: var(--white);
    color: var(--cocoa);
    cursor: pointer;
}

.trip-card a {
    display: block;
    height: 100%;
}

@media (max-width: 860px) {
    .tour-content-grid {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: static;
    }

    .tour-hero {
        min-height: 280px;
    }

    .tour-hero-content {
        padding: 24px;
    }

    .includes-excludes {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .hero-content {
        padding: 48px clamp(24px, 5vw, 56px);
    }

    .hero-copy {
        max-width: 460px;
    }

    .hero-overlay {
        background: linear-gradient(to right,
                #F8F5F0 0%,
                #F8F5F0 28%,
                rgba(248, 245, 240, 0.88) 48%,
                rgba(248, 245, 240, 0.0) 72%);
    }

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

    .features-grid .feature-item:nth-child(n+4) {
        border-top: 1px dashed rgba(201, 140, 140, .25);
        padding-top: 16px;
    }

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

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-media {
        grid-column: 1 / -1;
        aspect-ratio: 2.6 / 1;
    }

    .gallery {
        grid-template-columns: repeat(5, 1fr);
    }

    .cta-card {
        grid-template-columns: 1fr 1fr;
    }

    .cta-features {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-pyramids {
        opacity: .5;
    }
}

@media (max-width: 860px) {
    .primary-nav {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }

    .primary-nav.open {
        display: block;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line-2);
        box-shadow: 0 8px 18px rgba(61, 52, 46, .08);
        padding: 14px 16px;
    }

    .primary-nav.open ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero {
        padding: 12px 0;
    }

    .hero-card {
        min-height: auto;
        border-radius: 20px;
    }

    .hero-content {
        padding: 40px 24px 32px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-bg {
        object-fit: cover;
        object-position: 70% center;
    }

    /* on small screens fade from top so the headline stays readable on the image */
    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(248, 245, 240, 0.96) 0%,
                rgba(248, 245, 240, 0.92) 45%,
                rgba(248, 245, 240, 0.45) 75%,
                rgba(248, 245, 240, 0.0) 100%);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px;
    }

    .search-bar {
        grid-template-columns: 1fr;
    }

    .search-btn {
        width: 100%;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

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

    .cta-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-pyramids {
        display: none;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta .btn,
    .cta-buttons .btn {
        flex: 1;
    }
}

/* ==========================================================================
   BOOKING PAGE
   ========================================================================== */
.booking-page {
    padding: 120px 0 80px;
    background: #FDF8F3;
    min-height: 100vh;
}

.booking-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    max-width: 1060px;
    margin: 0 auto;
    align-items: start;
}

/* Summary Card */
.booking-summary-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
}

.summary-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.summary-details {
    padding: 24px;
}

.summary-details h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #1B1B18;
    margin: 0 0 8px;
}

.summary-subtitle {
    font-size: 13px;
    color: #6F7453;
    margin: 0 0 16px;
    line-height: 1.4;
}

.summary-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.summary-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f0ebe3;
}

.summary-meta li:last-child {
    border-bottom: none;
}

.summary-meta svg {
    flex-shrink: 0;
    color: #C98C8C;
}

.summary-price {
    background: linear-gradient(135deg, #C98C8C10, #C98C8C20);
    border-radius: 10px;
    padding: 14px 18px;
    text-align: center;
}

.price-per-person {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #C98C8C;
}

.summary-price small {
    font-size: 14px;
    color: #888;
}

/* Form Wrapper */
.booking-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.booking-form-wrapper h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: #1B1B18;
    margin: 0 0 8px;
}

.form-intro {
    font-size: 14px;
    color: #777;
    margin: 0 0 28px;
}

.booking-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.booking-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-errors li {
    color: #dc2626;
    font-size: 13px;
    padding: 2px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1B1B18;
    margin-bottom: 6px;
}

.form-group .required {
    color: #C98C8C;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background: #fafaf8;
    color: #1B1B18;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
    border-color: #C98C8C;
    box-shadow: 0 0 0 3px rgba(201, 140, 140, 0.15);
}

.form-group .field-error {
    display: block;
    color: #C98C8C;
    font-size: 12px;
    margin-top: 6px;
}

.form-group .form-text {
    display: block;
    color: #6F7453;
    font-size: 12px;
    margin-top: 6px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C98C8C;
    box-shadow: 0 0 0 3px rgba(201, 140, 140, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Payment Method Selection */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #ede4d7;
    border-radius: 12px;
    cursor: pointer;
    background: #fafaf8;
    transition: border-color 0.2s, background 0.2s;
}

.payment-method-option.active,
.payment-method-option:has(input:checked) {
    border-color: #C98C8C;
    background: #fff8f7;
}

.payment-method-option input {
    width: auto;
    margin: 0;
}

.payment-method-option .pm-name {
    font-weight: 600;
    color: #1B1B18;
    font-size: 14px;
}

.payment-method-option .pm-note {
    margin-left: auto;
    font-size: 12px;
    color: #888;
}

.currency-note {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #6F7453;
}

/* Booking Total */
.booking-total {
    background: #fdf8f3;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 24px 0;
}

.total-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 14px;
    color: #555;
}

.total-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #C98C8C;
}

.btn-book {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    background: #C98C8C;
    color: #fff;
    transition: background 0.2s;
}

.btn-book:hover {
    background: #b57a7a;
}

/* ==========================================================================
   PAYMENT PAGE
   ========================================================================== */
.payment-layout {
    max-width: 520px;
    margin: 0 auto;
}

.payment-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.payment-card h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: #1B1B18;
    margin: 0 0 24px;
    text-align: center;
}

.payment-summary {
    background: #fdf8f3;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
}

.payment-summary h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    margin: 0 0 12px;
    color: #1B1B18;
}

.payment-details-table {
    width: 100%;
    border-collapse: collapse;
}

.payment-details-table td {
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #ede4d7;
}

.payment-details-table td:first-child {
    color: #6F7453;
    font-weight: 600;
    width: 100px;
}

.payment-details-table .total-row td {
    border-bottom: none;
    font-size: 16px;
    font-weight: 700;
    color: #C98C8C;
    padding-top: 14px;
}

#payment-element {
    margin-bottom: 24px;
}

.payment-message {
    color: #dc2626;
    font-size: 13px;
    text-align: center;
    margin-bottom: 16px;
    padding: 10px;
    background: #fef2f2;
    border-radius: 8px;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payment-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

.payment-secure-note svg {
    color: #6F7453;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    max-width: 360px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background-color: #6F7453;
}

.toast-error {
    background-color: #C98C8C;
}

@media (max-width: 576px) {
    .toast-container {
        top: auto;
        bottom: 24px;
        right: 16px;
        left: 16px;
        align-items: stretch;
    }

    .toast {
        max-width: 100%;
    }
}

/* ==========================================================================
   SUCCESS PAGE
   ========================================================================== */
.success-layout {
    max-width: 560px;
    margin: 0 auto;
}

.success-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.success-icon {
    margin-bottom: 16px;
}

.success-icon svg {
    color: #6F7453;
}

.success-card h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: #1B1B18;
    margin: 0 0 8px;
}

.success-message {
    font-size: 15px;
    color: #555;
    margin: 0 0 28px;
}

.success-details {
    background: #fdf8f3;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.success-table {
    width: 100%;
    border-collapse: collapse;
}

.success-table td {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #ede4d7;
}

.success-table td:first-child {
    color: #6F7453;
    font-weight: 600;
    width: 120px;
}

.success-table .total-row td {
    border-bottom: none;
    font-size: 18px;
    font-weight: 700;
    color: #C98C8C;
    padding-top: 14px;
}

.success-email-note {
    font-size: 13px;
    color: #777;
    margin-bottom: 24px;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.success-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #25D366;
    border-radius: 10px;
    transition: background 0.2s;
}

.success-whatsapp:hover {
    background: #25D36610;
}

/* Booking page responsive */
@media (max-width: 860px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-summary-card {
        position: static;
    }

    .booking-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }
}