/* =========================================================
   SARFIRA TRIPS — Main Stylesheet v2.0
   Single font · Montserrat · Sharper · More interactive
   ========================================================= */

/* ─── Variables ─────────────────────────────────────────── */
:root {
    --st-red:        #E8455A;
    --st-red-dark:   #C7304A;
    --st-dark:       #1A1A1A;
    --st-charcoal:   #4A4A4A;
    --st-gray:       #888888;
    --st-light:      #F8F8F8;
    --st-white:      #FFFFFF;
    --st-border:     #E5E5E5;
    --st-success:    #4CAF50;
    --st-wa-green:   #25D366;
    --st-shadow:     0 4px 24px rgba(0,0,0,.09);
    --st-shadow-lg:  0 12px 40px rgba(0,0,0,.14);
    --st-radius:     8px;
    --st-radius-sm:  4px;
    --st-transition: .22s ease;
    --st-font:       'Montserrat', -apple-system, Arial, sans-serif;
    --st-container:  1200px;
}

/* ─── Scroll Progress Bar ────────────────────────────────── */
#st-progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--st-red);
    z-index: 9999;
    transition: width .1s linear;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--st-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--st-charcoal);
    background: var(--st-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--st-font); }
ul { list-style: none; }
input, select, textarea { font-family: var(--st-font); font-size: 15px; }

/* ─── Container ─────────────────────────────────────────── */
.st-container {
    width: 100%;
    max-width: var(--st-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Section ───────────────────────────────────────────── */
.st-section { padding: 80px 0; }
.st-section--light { background: var(--st-light); }
.st-section--dark  { background: var(--st-dark); }

.st-section__header { text-align: center; margin-bottom: 56px; }

/* Section tag — overline style, no pill */
.st-section__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--st-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.st-section__tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--st-red);
    flex-shrink: 0;
}
.st-section__header h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--st-dark);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -.5px;
}
.st-section__header p { font-size: 16px; color: var(--st-gray); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.st-section__cta { text-align: center; margin-top: 48px; }

/* ─── Buttons ───────────────────────────────────────────── */
.st-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--st-radius-sm);
    font-family: var(--st-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: color var(--st-transition), transform var(--st-transition), box-shadow var(--st-transition);
    cursor: pointer;
    white-space: nowrap;
}
/* Slide-fill animation layer */
.st-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-101%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    z-index: 0;
}
.st-btn:hover::before { transform: translateX(0); }
.st-btn > * { position: relative; z-index: 1; }
.st-btn > i,
.st-btn > span { position: relative; z-index: 1; }

.st-btn--primary {
    background: var(--st-red);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,69,90,.28);
}
.st-btn--primary::before { background: var(--st-red-dark); }
.st-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,69,90,.36); }

.st-btn--whatsapp { background: var(--st-wa-green); color: #fff; }
.st-btn--whatsapp::before { background: #1da851; }
.st-btn--whatsapp:hover { transform: translateY(-2px); }

.st-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.7);
}
.st-btn--outline::before { background: rgba(255,255,255,.15); }

.st-btn--outline-dark {
    background: transparent;
    color: var(--st-dark);
    border: 2px solid var(--st-dark);
}
.st-btn--outline-dark::before { background: var(--st-dark); }
.st-btn--outline-dark:hover { color: #fff; }

.st-btn--sm { padding: 8px 18px; font-size: 12px; }
.st-btn--full { width: 100%; justify-content: center; }
.st-btn--disabled { background: #ccc !important; color: #666 !important; cursor: not-allowed; box-shadow: none !important; }
.st-btn--disabled:hover { transform: none !important; }
.st-btn--disabled::before { display: none; }

/* Ripple */
.st-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    transform: scale(0);
    animation: st-ripple .5s linear;
    pointer-events: none;
    z-index: 2;
}
@keyframes st-ripple {
    to { transform: scale(4); opacity: 0; }
}

/* ─── Navbar ────────────────────────────────────────────── */
.st-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--st-transition);
}
.st-nav.scrolled {
    background: rgba(26,26,26,.97);
    backdrop-filter: blur(12px);
    padding: 11px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.32);
}
.st-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.st-nav__brand-text {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}
.st-nav__brand-text span { color: var(--st-red); }
.st-nav__logo { height: 44px; width: auto; }
.st-nav__links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.st-nav__links a {
    position: relative;
    padding: 8px 14px;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    border-radius: var(--st-radius-sm);
    transition: color var(--st-transition);
}
.st-nav__links a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: var(--st-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.st-nav__links a:hover { color: #fff; }
.st-nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.st-nav__actions { display: flex; align-items: center; gap: 12px; }
.st-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.st-nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--st-transition);
}
.st-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.st-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.st-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ──────────────────────────────────────────────── */
.st-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}
.st-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,.88) 0%, rgba(26,26,26,.55) 55%, rgba(232,69,90,.18) 100%);
}
.st-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    max-width: 800px;
}
/* Eyebrow line — replaces pill badge */
.st-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.st-hero__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--st-red);
}
/* legacy badge class kept for compatibility */
.st-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,69,90,.18);
    border: 1px solid rgba(232,69,90,.38);
    color: #ffb3be;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.st-hero__title {
    font-size: clamp(38px, 6vw, 70px);
    font-weight: 900;
    color: #fff;
    line-height: 1.07;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.st-hero__title em { color: var(--st-red); font-style: normal; }
.st-hero__sub {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,.78);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.75;
}
.st-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.st-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--st-radius);
    padding: 18px 28px;
    width: fit-content;
}
.st-hero__stat { text-align: center; padding: 0 24px; }
.st-hero__stat .num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}
.st-hero__stat span:last-child {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.st-hero__stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.18); }
.st-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounce 2.2s ease-in-out infinite;
    z-index: 1;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(9px); }
}

/* ─── Page Heroes ───────────────────────────────────────── */
.st-page-hero {
    position: relative;
    padding: 136px 0 80px;
    background-color: var(--st-dark);
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}
.st-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--st-dark) 0%, rgba(232,69,90,.35) 100%);
}
.st-page-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.52); }
.st-page-hero .st-container { position: relative; z-index: 1; }
.st-page-hero h1 {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.st-page-hero p { font-size: 17px; font-weight: 400; color: rgba(255,255,255,.75); }
.st-page-hero--trips   { background-image: url('../images/hero-trips.jpg'); }
.st-page-hero--about   { background-image: url('../images/hero-about.jpg'); }
.st-page-hero--gallery { background-image: url('../images/hero-gallery.jpg'); }
.st-page-hero--custom  { background-image: url('../images/hero-custom.jpg'); }
.st-page-hero--contact { background-image: url('../images/hero-contact.jpg'); }

/* ─── Why Section ───────────────────────────────────────── */
.st-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.st-why__card {
    position: relative;
    padding: 36px 28px;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius);
    text-align: left;
    transition: all var(--st-transition);
    box-shadow: var(--st-shadow);
    overflow: hidden;
}
.st-why__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--st-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.st-why__card:hover { transform: translateY(-5px); box-shadow: var(--st-shadow-lg); }
.st-why__card:hover::before { transform: scaleX(1); }
.st-why__num {
    font-size: 64px;
    font-weight: 900;
    color: rgba(232,69,90,.07);
    line-height: 1;
    margin-bottom: -12px;
    letter-spacing: -2px;
}
.st-why__icon {
    width: 52px; height: 52px;
    background: rgba(232,69,90,.09);
    border-radius: var(--st-radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--st-red);
}
.st-why__card h3 { font-size: 17px; font-weight: 700; color: var(--st-dark); margin-bottom: 10px; }
.st-why__card p  { font-size: 14px; color: var(--st-gray); line-height: 1.65; }

/* ─── Trip Cards ─────────────────────────────────────────── */
.st-trips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.st-trips__grid--4col { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.st-trip-card {
    position: relative;
    background: var(--st-white);
    border-radius: var(--st-radius);
    overflow: hidden;
    box-shadow: var(--st-shadow);
    transition: all var(--st-transition);
    border: 1px solid var(--st-border);
}
/* left accent bar on hover */
.st-trip-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--st-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.st-trip-card:hover { transform: translateY(-5px); box-shadow: var(--st-shadow-lg); }
.st-trip-card:hover::after { transform: scaleY(1); }
.st-trip-card__img-wrap {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
}
.st-trip-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.st-trip-card:hover .st-trip-card__img-wrap img { transform: scale(1.06); }
.st-trip-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.42) 0%, transparent 60%); }
.st-trip-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--st-red);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--st-radius-sm);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.st-trip-card__status {
    position: absolute;
    top: 14px; right: 14px;
    padding: 3px 10px;
    border-radius: var(--st-radius-sm);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.st-status--upcoming { background: rgba(255,255,255,.92); color: var(--st-charcoal); }
.st-status--active   { background: var(--st-success); color: #fff; }
.st-status--full     { background: rgba(0,0,0,.75); color: #fff; }
.st-status--past     { background: rgba(0,0,0,.5); color: #fff; }
.st-trip-card__body { padding: 22px 22px 22px 26px; }
.st-trip-card__meta {
    display: flex; gap: 14px; align-items: center;
    font-size: 11px; font-weight: 600; color: var(--st-gray);
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 10px;
}
.st-trip-card__meta span { display: flex; align-items: center; gap: 4px; }
.st-urgency { color: var(--st-red) !important; font-weight: 700; }
.st-trip-card__title { font-size: 17px; font-weight: 700; color: var(--st-dark); margin-bottom: 8px; line-height: 1.3; letter-spacing: -.3px; }
.st-trip-card__title a:hover { color: var(--st-red); }
.st-trip-card__dates { font-size: 13px; color: var(--st-gray); margin-bottom: 18px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.st-trip-card__footer { display: flex; justify-content: space-between; align-items: flex-end; }
.st-trip-card__price .label { display: block; font-size: 10px; font-weight: 700; color: var(--st-gray); text-transform: uppercase; letter-spacing: .8px; }
.st-trip-card__price .amount { font-size: 26px; font-weight: 800; color: var(--st-red); line-height: 1; letter-spacing: -1px; }
.st-trip-card__price .per { font-size: 11px; color: var(--st-gray); }

/* ─── How It Works ──────────────────────────────────────── */
.st-how__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.st-how__step {
    text-align: center;
    padding: 40px 28px;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}
.st-how__num {
    font-size: 52px;
    font-weight: 900;
    color: rgba(232,69,90,.2);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}
.st-how__icon {
    width: 64px; height: 64px;
    background: rgba(232,69,90,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: var(--st-red);
}
.st-how__step h3 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.st-how__step p  { color: rgba(255,255,255,.6); font-size: 14px; }
.st-how__arrow { font-size: 22px; color: rgba(255,255,255,.25); padding: 0 8px; }

/* ─── Gallery ───────────────────────────────────────────── */
.st-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 10px;
}
.st-gallery__grid--masonry {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-template-rows: auto;
}
.st-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--st-radius-sm);
    cursor: pointer;
}
.st-gallery__item--large { grid-column: span 2; grid-row: span 2; }
.st-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.st-gallery__grid--masonry .st-gallery__item img { height: 220px; }
.st-gallery__item:hover img { transform: scale(1.06); }
.st-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(232,69,90,.42);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: opacity var(--st-transition);
}
.st-gallery__item:hover .st-gallery__overlay { opacity: 1; }
.st-gallery__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82), transparent);
    padding: 22px 14px 12px;
    opacity: 0;
    transition: opacity var(--st-transition);
}
.st-gallery__item:hover .st-gallery__caption { opacity: 1; }
.st-gallery__caption span { display: block; color: #fff; font-size: 13px; font-weight: 600; }
.st-gallery__type { font-size: 11px; opacity: .75; margin-top: 2px; font-weight: 400; }

/* ─── Testimonials ──────────────────────────────────────── */
.st-testimonials__slider { overflow: hidden; position: relative; }
.st-testimonial__cards-track { display: flex; transition: transform .4s ease; }
.st-testimonial__card {
    background: var(--st-white);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius);
    padding: 32px;
    min-width: 340px;
    margin: 0 10px;
    box-shadow: var(--st-shadow);
    flex-shrink: 0;
}
.st-testimonial__stars { color: #FFB830; margin-bottom: 16px; font-size: 14px; letter-spacing: 1px; }
.st-testimonial__text { font-size: 14px; color: var(--st-charcoal); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.st-testimonial__author { display: flex; align-items: center; gap: 12px; }
.st-testimonial__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--st-red); }
.st-testimonial__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--st-red);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
}
.st-testimonial__author strong { display: block; font-size: 14px; font-weight: 700; color: var(--st-dark); }
.st-testimonial__author span  { display: block; font-size: 12px; color: var(--st-gray); }
.st-testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.st-testimonials__dots .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--st-border);
    cursor: pointer;
    transition: all var(--st-transition);
}
.st-testimonials__dots .dot.active { background: var(--st-red); width: 24px; border-radius: 2px; }

/* ─── CTA Band ──────────────────────────────────────────── */
.st-cta-band { background: var(--st-red); }
.st-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding: 16px 0;
}
.st-cta-band__text h2 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -.5px; }
.st-cta-band__text p  { color: rgba(255,255,255,.82); font-size: 15px; }
.st-cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.st-cta-band .st-btn--primary { background: #fff; color: var(--st-red); }
.st-cta-band .st-btn--primary::before { background: #f5f5f5; }

/* ─── Filters ───────────────────────────────────────────── */
.st-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.st-filters__label { font-size: 11px; font-weight: 700; color: var(--st-gray); text-transform: uppercase; letter-spacing: 1px; }
.st-filters__form  { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.st-filters__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.st-filters__count { font-size: 13px; color: var(--st-gray); }
.st-chip {
    padding: 7px 16px;
    border: 1.5px solid var(--st-border);
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    color: var(--st-charcoal);
    background: var(--st-white);
    transition: all var(--st-transition);
}
.st-chip:hover  { border-color: var(--st-red); color: var(--st-red); }
.st-chip.active { background: var(--st-red); border-color: var(--st-red); color: #fff; }

/* Custom trip CTA within trips listing */
.st-trips__custom-cta { margin-top: 56px; }
.st-trips__custom-inner {
    background: linear-gradient(135deg, var(--st-dark) 0%, rgba(74,74,74,1) 100%);
    border-radius: var(--st-radius);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.st-trips__custom-inner i { font-size: 36px; color: var(--st-red); }
.st-trips__custom-inner h3 { color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.st-trips__custom-inner p  { color: rgba(255,255,255,.65); font-size: 14px; }
.st-trips__custom-inner .st-btn { margin-left: auto; flex-shrink: 0; }

/* ─── Trip Single Page ──────────────────────────────────── */
.st-trip-hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 48px;
}
.st-trip-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.2) 55%, transparent 100%); }
.st-trip-hero__content { position: relative; z-index: 1; padding-top: 80px; }
.st-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.st-breadcrumb a { color: rgba(255,255,255,.6); }
.st-breadcrumb a:hover { color: #fff; }
.st-breadcrumb i { font-size: 10px; }
.st-trip-hero__content h1 {
    font-size: clamp(26px, 4vw, 50px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}
.st-trip-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.82);
}
.st-trip-hero__meta span { display: flex; align-items: center; gap: 6px; }

.st-trip-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}
.st-trip-content { min-width: 0; }

/* Tabs */
.st-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--st-border);
    margin-bottom: 32px;
    overflow-x: auto;
}
.st-tab-btn {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--st-gray);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--st-transition);
    white-space: nowrap;
    text-transform: uppercase;
    font-family: var(--st-font);
}
.st-tab-btn:hover { color: var(--st-dark); }
.st-tab-btn.active { color: var(--st-red); border-bottom-color: var(--st-red); }
.st-tab-panel { display: none; }
.st-tab-panel.active { display: block; }
.st-trip-description { font-size: 15px; line-height: 1.85; color: var(--st-charcoal); }
.st-trip-description p { margin-bottom: 16px; }

/* Departure dates in single */
.st-trip-dates { background: var(--st-light); border-radius: var(--st-radius-sm); padding: 20px 24px; margin-top: 28px; }
.st-trip-dates h3 { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: var(--st-dark); display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .5px; }
.st-trip-dates ul li { display: flex; align-items: center; gap: 8px; padding: 7px 0; font-size: 14px; color: var(--st-charcoal); border-bottom: 1px solid var(--st-border); }
.st-trip-dates ul li:last-child { border: none; }
.st-trip-dates ul li i { color: var(--st-red); font-size: 11px; }

/* Itinerary */
.st-itinerary { position: relative; }
.st-itinerary::before {
    content: '';
    position: absolute;
    left: 28px; top: 0; bottom: 0;
    width: 2px;
    background: var(--st-border);
}
.st-itinerary__day {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}
.st-itinerary__day-marker {
    flex-shrink: 0;
    width: 58px;
    display: flex;
    justify-content: center;
    padding-top: 2px;
    position: relative;
    z-index: 1;
}
.st-itinerary__day-num {
    background: var(--st-red);
    color: #fff;
    padding: 4px 8px;
    border-radius: var(--st-radius-sm);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    white-space: nowrap;
}
.st-itinerary__day-content { flex: 1; background: var(--st-light); border-radius: var(--st-radius-sm); padding: 16px 20px; }
.st-itinerary__day-content h4 { font-size: 14px; font-weight: 700; color: var(--st-dark); margin-bottom: 6px; }
.st-itinerary__day-content p  { font-size: 14px; color: var(--st-charcoal); line-height: 1.65; }

/* Inclusions */
.st-inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.st-inclusions h3, .st-exclusions h3 { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--st-dark); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.st-inclusions ul li, .st-exclusions ul li { display: flex; align-items: flex-start; gap: 8px; padding: 7px 0; font-size: 14px; border-bottom: 1px solid var(--st-border); }
.st-inclusions li i { color: var(--st-success); flex-shrink: 0; margin-top: 3px; }
.st-exclusions li i { color: var(--st-red); flex-shrink: 0; margin-top: 3px; }

/* Trip gallery in single page */
.st-trip-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.st-trip-gallery-item {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: var(--st-radius-sm);
    cursor: pointer;
}
.st-trip-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.st-trip-gallery-item:hover img { transform: scale(1.06); }

/* Booking Sidebar */
.st-booking-card {
    background: var(--st-white);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius);
    overflow: hidden;
    position: sticky;
    top: 90px;
    box-shadow: var(--st-shadow-lg);
}
/* Dark top block for price */
.st-booking-card__top {
    background: var(--st-dark);
    padding: 24px 28px;
    text-align: center;
}
.st-booking-card__top .label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.45); margin-bottom: 8px; }
.st-booking-amount { font-size: 44px; font-weight: 900; color: var(--st-red); line-height: 1; letter-spacing: -2px; }
.st-booking-amount-sub { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }
.st-booking-card__body { padding: 24px 28px; }

/* legacy compat */
.st-booking-price { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--st-border); margin-bottom: 20px; }
.st-booking-price span { font-size: 13px; color: var(--st-gray); }

.st-booking-dates { margin-bottom: 20px; }
.st-booking-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--st-gray); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.st-booking-date-item {
    padding: 8px 12px;
    background: var(--st-light);
    border-radius: var(--st-radius-sm);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--st-charcoal);
}
.st-booking-quick-info { margin-bottom: 20px; }
.st-booking-quick-info div { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--st-border); font-size: 14px; }
.st-booking-quick-info div:last-child { border: none; }
.st-booking-quick-info i { color: var(--st-red); width: 16px; flex-shrink: 0; margin-top: 2px; }
.st-booking-card .st-btn { margin-bottom: 10px; }
.st-full-notice { text-align: center; color: var(--st-gray); font-size: 14px; padding: 12px; background: var(--st-light); border-radius: var(--st-radius-sm); margin-bottom: 10px; }

/* ─── Modal ─────────────────────────────────────────────── */
.st-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all var(--st-transition);
}
.st-modal.open { visibility: visible; opacity: 1; }
.st-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(4px); }
.st-modal__box {
    position: relative;
    z-index: 1;
    background: var(--st-white);
    border-radius: var(--st-radius);
    padding: 36px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(.95) translateY(10px);
    transition: transform var(--st-transition);
    box-shadow: var(--st-shadow-lg);
}
.st-modal.open .st-modal__box { transform: scale(1) translateY(0); }
.st-modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--st-light);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    color: var(--st-charcoal);
    transition: all var(--st-transition);
}
.st-modal__close:hover { background: var(--st-red); color: #fff; }
.st-modal__header h3 { font-size: 20px; font-weight: 800; color: var(--st-dark); margin-bottom: 4px; letter-spacing: -.3px; }
.st-modal__header p  { font-size: 14px; color: var(--st-gray); margin-bottom: 24px; }

/* ─── Forms ─────────────────────────────────────────────── */
.st-form-row { display: flex; gap: 16px; }
.st-form-group { margin-bottom: 18px; flex: 1; }
.st-form-group--half { flex: 1; min-width: 0; }
.st-form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--st-charcoal); margin-bottom: 7px; }
.st-form-group input,
.st-form-group select,
.st-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-sm);
    font-family: var(--st-font);
    font-size: 14px;
    color: var(--st-dark);
    transition: border-color var(--st-transition), box-shadow var(--st-transition);
    background: var(--st-white);
}
.st-form-group input:focus,
.st-form-group select:focus,
.st-form-group textarea:focus {
    outline: none;
    border-color: var(--st-red);
    box-shadow: 0 0 0 3px rgba(232,69,90,.1);
}
.st-form-group textarea { resize: vertical; }
.st-form-error   { color: var(--st-red); font-size: 13px; font-weight: 500; padding: 10px 14px; background: rgba(232,69,90,.07); border-radius: var(--st-radius-sm); margin-bottom: 14px; }
.st-form-success { color: #2e7d32; font-size: 14px; padding: 12px 14px; background: rgba(76,175,80,.08); border-radius: var(--st-radius-sm); margin-bottom: 14px; }
.st-form-note    { font-size: 11px; font-weight: 500; color: var(--st-gray); text-align: center; margin-top: 10px; }

/* File upload */
.st-file-upload {
    position: relative;
    border: 2px dashed var(--st-border);
    border-radius: var(--st-radius-sm);
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all var(--st-transition);
}
.st-file-upload:hover { border-color: var(--st-red); background: rgba(232,69,90,.02); }
.st-file-upload i { font-size: 28px; color: var(--st-red); margin-bottom: 8px; }
.st-file-upload span { display: block; font-size: 14px; font-weight: 600; color: var(--st-charcoal); margin-bottom: 4px; }
.st-file-upload small { font-size: 12px; color: var(--st-gray); }
.st-file-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

/* ─── Lightbox ──────────────────────────────────────────── */
.st-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,.96);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all var(--st-transition);
}
.st-lightbox.open { visibility: visible; opacity: 1; }
.st-lightbox__backdrop { position: absolute; inset: 0; }
.st-lightbox__img {
    position: relative;
    z-index: 1;
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--st-radius-sm);
}
.st-lightbox__close, .st-lightbox__prev, .st-lightbox__next {
    position: absolute;
    z-index: 2;
    background: rgba(255,255,255,.1);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background var(--st-transition);
}
.st-lightbox__close:hover, .st-lightbox__prev:hover, .st-lightbox__next:hover { background: rgba(255,255,255,.25); }
.st-lightbox__close { top: 20px; right: 20px; font-size: 22px; }
.st-lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.st-lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ─── Contact Page ──────────────────────────────────────── */
.st-contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.st-contact-cards { display: flex; flex-direction: column; gap: 20px; }
.st-contact-card {
    background: var(--st-white);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius);
    padding: 24px;
    display: flex;
    gap: 18px;
    box-shadow: var(--st-shadow);
    transition: all var(--st-transition);
}
.st-contact-card:hover { transform: translateY(-3px); box-shadow: var(--st-shadow-lg); }
.st-contact-card--whatsapp { border-color: var(--st-wa-green); }
.st-contact-card__icon {
    width: 50px; height: 50px;
    border-radius: var(--st-radius-sm);
    background: rgba(232,69,90,.09);
    color: var(--st-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.st-contact-card--whatsapp .st-contact-card__icon { background: rgba(37,211,102,.1); color: var(--st-wa-green); }
.st-contact-card h3 { font-size: 14px; font-weight: 700; color: var(--st-dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.st-contact-card p  { font-size: 13px; color: var(--st-gray); margin-bottom: 10px; }
.st-contact-nums { display: flex; flex-direction: column; gap: 6px; }
.st-contact-nums a { font-size: 16px; font-weight: 700; color: var(--st-wa-green); }
.st-contact-nums a:hover { text-decoration: underline; }
.st-contact-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.st-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--st-radius-sm);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}
.st-social-btn--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.st-social-btn--fb { background: #1877f2; }
.st-social-btn--yt { background: #FF0000; }

/* FAQ */
.st-faq h2 { font-size: 26px; font-weight: 800; color: var(--st-dark); margin-bottom: 24px; letter-spacing: -.5px; }
.st-faq__item { border-bottom: 1px solid var(--st-border); }
.st-faq__q {
    width: 100%;
    text-align: left;
    padding: 16px 0;
    font-family: var(--st-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--st-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: none;
    border: none;
}
.st-faq__q:hover { color: var(--st-red); }
.st-faq__q i { flex-shrink: 0; transition: transform var(--st-transition); color: var(--st-red); }
.st-faq__item.open .st-faq__q i { transform: rotate(45deg); }
.st-faq__a { display: none; padding: 0 0 16px; }
.st-faq__a p { font-size: 14px; color: var(--st-charcoal); line-height: 1.75; }

/* ─── Custom Trip Page ──────────────────────────────────── */
.st-custom-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.st-custom-form-card {
    background: var(--st-white);
    border-radius: var(--st-radius);
    padding: 40px;
    box-shadow: var(--st-shadow-lg);
    border: 1px solid var(--st-border);
}
.st-custom-form-card h2 { font-size: 24px; font-weight: 800; color: var(--st-dark); margin-bottom: 8px; letter-spacing: -.5px; }
.st-custom-form-card p  { font-size: 14px; color: var(--st-gray); margin-bottom: 28px; }
.st-custom-info__card {
    background: var(--st-white);
    border-radius: var(--st-radius);
    padding: 28px;
    box-shadow: var(--st-shadow);
    border: 1px solid var(--st-border);
}
.st-custom-info__card h3 { font-size: 15px; font-weight: 700; color: var(--st-dark); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.st-custom-features { display: flex; flex-direction: column; gap: 10px; }
.st-custom-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--st-charcoal); }
.st-custom-features li i { color: var(--st-red); }
.st-contact-quick { display: flex; flex-direction: column; gap: 12px; }
.st-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--st-light);
    border-radius: var(--st-radius-sm);
    font-size: 14px;
    transition: all var(--st-transition);
}
.st-contact-item:hover { background: rgba(37,211,102,.08); }
.st-contact-item i  { font-size: 22px; }
.st-contact-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--st-dark); }
.st-contact-item span   { font-size: 12px; color: var(--st-gray); }
.st-custom-info__destinations { margin-top: 20px; background: var(--st-white); border-radius: var(--st-radius); padding: 24px; box-shadow: var(--st-shadow); border: 1px solid var(--st-border); }
.st-custom-info__destinations h3 { font-size: 14px; font-weight: 700; color: var(--st-dark); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.st-dest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.st-dest-tags span {
    padding: 6px 14px;
    background: rgba(232,69,90,.07);
    color: var(--st-red);
    border-radius: var(--st-radius-sm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
}

/* ─── About Page ────────────────────────────────────────── */
.st-about-story { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.st-about-story__text .st-section__tag { display: inline-flex; margin-bottom: 12px; }
.st-about-story__text h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--st-dark); margin-bottom: 16px; letter-spacing: -.5px; }
.st-about-story__text p { font-size: 15px; color: var(--st-charcoal); line-height: 1.85; margin-bottom: 16px; }
.st-about-img-stack { position: relative; height: 380px; }
.st-about-img-block {
    position: absolute;
    border-radius: var(--st-radius);
    background: var(--st-light);
    border: 1px solid var(--st-border);
}
.st-about-img-block--1 { inset: 0; background: linear-gradient(135deg, var(--st-red) 0%, rgba(232,69,90,.4) 100%); }
.st-about-img-block--2 { top: 20px; left: 20px; right: -20px; bottom: -20px; background: var(--st-dark); z-index: -1; }
.st-about-badge {
    position: absolute;
    bottom: -16px; left: 24px;
    background: var(--st-white);
    border-radius: var(--st-radius-sm);
    padding: 14px 20px;
    box-shadow: var(--st-shadow-lg);
    text-align: center;
}
.st-about-badge .num { font-size: 28px; font-weight: 900; color: var(--st-red); display: block; letter-spacing: -1px; }
.st-about-badge span:last-child { font-size: 12px; color: var(--st-gray); font-weight: 600; }

.st-stranger-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.st-stranger__step { text-align: center; padding: 28px 20px; background: var(--st-white); border-radius: var(--st-radius); box-shadow: var(--st-shadow); transition: all var(--st-transition); }
.st-stranger__step:hover { transform: translateY(-4px); box-shadow: var(--st-shadow-lg); }
.st-stranger__icon { font-size: 36px; margin-bottom: 14px; }
.st-stranger__step h3 { font-size: 15px; font-weight: 700; color: var(--st-dark); margin-bottom: 8px; }
.st-stranger__step p  { font-size: 13px; color: var(--st-gray); }

.st-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.st-value-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--st-radius); padding: 28px; text-align: center; transition: all var(--st-transition); }
.st-value-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.st-value-card i   { font-size: 30px; color: var(--st-red); margin-bottom: 14px; }
.st-value-card h3  { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.st-value-card p   { font-size: 13px; color: rgba(255,255,255,.6); }

/* ─── Gallery Submit Banner ─────────────────────────────── */
.st-gallery-submit-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--st-dark);
    border-radius: var(--st-radius);
    padding: 24px 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.st-gallery-submit-banner h3 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.st-gallery-submit-banner p  { color: rgba(255,255,255,.65); font-size: 14px; }

/* ─── Empty State ───────────────────────────────────────── */
.st-empty-state { text-align: center; padding: 80px 20px; }
.st-empty-state i { font-size: 56px; color: var(--st-border); display: block; margin-bottom: 16px; }
.st-empty-state h3 { font-size: 20px; font-weight: 700; color: var(--st-charcoal); margin-bottom: 8px; }
.st-empty-state p  { font-size: 15px; color: var(--st-gray); }
.st-empty-state a  { color: var(--st-red); font-weight: 700; }

/* ─── Floating WhatsApp Button ──────────────────────────── */
.st-wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--st-wa-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.st-wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); color: #fff; }
.st-wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,.55);
    animation: wa-pulse 2.2s ease-out infinite;
    z-index: -1;
}
@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: .8; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ─── Footer ────────────────────────────────────────────── */
.st-footer { background: var(--st-dark); padding: 72px 0 0; }
.st-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; }
.st-footer__logo { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 14px; letter-spacing: -1px; }
.st-footer__logo span { color: var(--st-red); }
.st-footer__brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.st-footer__social { display: flex; gap: 10px; }
.st-footer__social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.07);
    border-radius: var(--st-radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 15px;
    transition: all var(--st-transition);
}
.st-footer__social a:hover { background: var(--st-red); color: #fff; }
.st-footer__col h4 { font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.st-footer__col ul li { margin-bottom: 10px; }
.st-footer__col ul a { font-size: 14px; color: rgba(255,255,255,.5); transition: color var(--st-transition); }
.st-footer__col ul a:hover { color: var(--st-red); }
.st-footer__contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.st-footer__contact i { color: var(--st-red); margin-top: 3px; flex-shrink: 0; }
.st-footer__contact a { font-size: 14px; color: rgba(255,255,255,.7); transition: color var(--st-transition); display: block; margin-bottom: 4px; }
.st-footer__contact a:hover { color: var(--st-red); }
.st-footer__contact span { font-size: 14px; color: rgba(255,255,255,.5); }
.st-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.35);
    flex-wrap: wrap;
    gap: 8px;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .st-trip-layout { grid-template-columns: 1fr; }
    .st-booking-card { position: static; }
    .st-footer__grid { grid-template-columns: 1fr 1fr; }
    .st-contact-layout { grid-template-columns: 1fr; }
    .st-custom-layout  { grid-template-columns: 1fr; }
    .st-about-story    { grid-template-columns: 1fr; }
    .st-about-story__img { display: none; }
}
@media (max-width: 768px) {
    .st-section { padding: 56px 0; }
    .st-nav__links, .st-nav .st-btn--whatsapp span { display: none; }
    .st-nav__links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0;
        background: var(--st-dark);
        padding: 80px 24px 32px;
        z-index: 999;
        gap: 0;
    }
    .st-nav__links.open li a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 16px; }
    .st-nav__hamburger { display: flex; }
    .st-hero__stats { flex-direction: column; align-items: flex-start; }
    .st-hero__stat-div { width: 48px; height: 1px; }
    .st-how__grid { flex-direction: column; align-items: center; }
    .st-how__arrow { transform: rotate(90deg); }
    .st-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .st-gallery__item--large { grid-column: span 1; grid-row: span 1; }
    .st-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .st-cta-band__inner { flex-direction: column; }
    .st-cta-band__inner .st-btn { margin: 0; }
    .st-trips__custom-inner .st-btn { margin-left: 0; }
    .st-inc-exc { grid-template-columns: 1fr; }
    .st-form-row { flex-direction: column; }
    .st-trip-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .st-wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 22px; }
}
@media (max-width: 480px) {
    .st-hero__btns { flex-direction: column; }
    .st-trips__grid { grid-template-columns: 1fr; }
    .st-gallery__grid { grid-template-columns: 1fr; }
    .st-hero__title { letter-spacing: -.5px; }
}
