/* ==========================================================================
   Landing Page: Guided Poland Tours
   URL: /lp/guided-poland-tours/
   ========================================================================== */

:root {
    --sp-color-orange: #F5A623;
    --sp-color-orange-bg: #FFF4E5;
    --sp-color-orange-text: #B86E00;
    --sp-color-blue: #2C5F8D;
    --sp-color-teal: #0F6E56;
    --sp-color-teal-bg: #E1F5EE;
    --sp-color-text-primary: #1A1A1A;
    --sp-color-text-secondary: #6B6B6B;
    --sp-color-text-muted: #888888;
    --sp-color-border-subtle: #EDEDED;
    --sp-color-card-bg: #F7F8FA;
    --sp-color-divider: #F0F0F0;
    --sp-font-serif: Georgia, 'Times New Roman', serif;
}

/* --- Layout: hide default site chrome (footer is shared globally) --- */
.lp-body .header,
.lp-body .scrollToTop,
.lp-body #top_div_notice { display: none !important; }

/* --- LP Header (minimal) --- */
.lp-header {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #DEE2E6;
}
.lp-header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
/* Bootstrap clearfix pseudo-elementy stają się grid items i łamią layout — neutralizujemy */
.lp-header .container::before,
.lp-header .container::after {
    display: none;
}
.lp-header__logo img {
    height: 40px;
    width: auto;
    display: block;
}
.lp-header__currency {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-header__currency-label {
    font-size: 13px;
    color: #868E96;
    white-space: nowrap;
}
.lp-header__currency .ui-selectmenu-button {
    width: auto !important;
    min-width: 0 !important;
    border: 1px solid #a0a0a0;
    border-radius: 4px;
    padding: 4px 10px 4px 10px;
    font-size: 14px;
    background: #fff;
    color: #343A40;
    line-height: 1.4;
}
.lp-header__currency .ui-selectmenu-button:hover { border-color: #228AE6; }
.lp-header__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.lp-header__email,
.lp-header__phone {
    font-size: 16px;
    font-weight: 500;
    color: #343A40;
    text-decoration: none;
}
.lp-header__email:hover,
.lp-header__phone:hover { color: #228AE6; }
.lp-header__sep {
    width: 1px;
    height: 16px;
    background: #DEE2E6;
    display: inline-block;
}
@media (max-width: 768px) {
    .lp-header .container {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 4px 16px;
        align-items: center;
    }
    .lp-header__logo { grid-column: 1; grid-row: 1; }
    .lp-header__contact {
        grid-column: 1;
        grid-row: 2;
        justify-content: flex-start;
        gap: 10px;
    }
    .lp-header__currency {
        grid-column: 2;
        grid-row: 1 / 3;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
        align-self: center;
    }
    .lp-header__currency-label {
        display: block;
        font-size: 12px;
    }
}
@media (max-width: 600px) {
    .lp-header__email,
    .lp-header__sep { display: none; }
}

/* --- Hero --- */
.lp-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 60px 0;
}
.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}
.lp-hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
}
.lp-hero h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 42px;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}
.lp-hero__sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    margin-bottom: 28px;
}

/* USP bar */
.lp-usp {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}
.lp-usp__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}
.lp-usp__icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAB005' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12.5l4.5 4.5L19 7'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
}

/* CTA buttons */
.lp-cta-primary {
    display: inline-block;
    background: #FAB005;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 32px;
    border: 2px solid #FAB005;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.lp-cta-primary:hover,
.lp-cta-primary:focus {
    background: #F08C00;
    border-color: #F08C00;
    color: #fff;
    text-decoration: none;
}
.lp-cta-secondary {
    display: inline-block;
    margin-top: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
}
.lp-cta-secondary:hover { color: #fff; }

/* --- Section common --- */
.lp-section {
    padding: 60px 0;
}
.lp-section--grey { background: #F8F9FA; }
.lp-section--cream { background: #FFF9F0; }
.lp-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.lp-cta-primary--arrow > span {
    margin-left: 8px;
    display: inline-block;
}
.lp-cta-outline {
    display: inline-block;
    background: #fff;
    color: #2C5F8D;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 32px;
    border: 2px solid #2C5F8D;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.lp-cta-outline:hover,
.lp-cta-outline:focus {
    background: #E8F0F7;
    color: #2C5F8D;
    text-decoration: none;
}
.lp-cta-outline > span {
    margin-left: 8px;
    display: inline-block;
}
.sp-eyebrow {
    display: inline-block;
    padding: 10px 14px;
    background: #FFF4E5;
    color: #B86E00;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}
.sp-eyebrow--blue {
    background: #E8F0F7;
    color: #1B4D7E;
}
.lp-section > .container > .sp-eyebrow {
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
}
.lp-section__title {
    font-family: 'Rubik', sans-serif;
    font-size: 30px;
    color: #343A40;
    text-align: center;
    margin: 0 0 12px;
}
.lp-section__subtitle {
    font-size: 17px;
    color: #16001C;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}


/* ============================================
   Reviews Section (sp-reviews)
   ============================================ */
.sp-reviews {
    background: #ffffff;
    padding: 64px 0 56px;
}
.sp-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.sp-reviews__header {
    text-align: center;
    margin-bottom: 36px;
}
.sp-reviews .sp-reviews__title {
    font-size: 30px;
    font-weight: 500;
    color: var(--sp-color-text-primary, #1A1A1A);
    margin: 14px 0 8px;
    line-height: 1.3;
}
.sp-reviews .sp-reviews__subtitle {
    font-size: 15px;
    color: var(--sp-color-text-secondary, #6B6B6B);
    margin: 0;
}
.sp-reviews__slider-wrap {
    position: relative;
    margin: 0 -24px;
    padding: 8px 0;
}
.sp-reviews__mask {
    position: relative;
    overflow: hidden;
    padding: 0 24px;
}
.sp-reviews__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 64px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.sp-reviews__fade--left {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 100%);
}
.sp-reviews__fade--right {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 100%);
}
.sp-reviews__mask.has-fade-left  .sp-reviews__fade--left  { opacity: 1; }
.sp-reviews__mask.has-fade-right .sp-reviews__fade--right { opacity: 1; }
.sp-reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--sp-color-border-subtle, #EDEDED);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--sp-color-text-primary, #1A1A1A);
    z-index: 3;
    transition: background-color 0.2s ease, color 0.2s ease;
    padding: 0;
}
.sp-reviews__nav:hover {
    background: var(--sp-color-orange-bg, #FFF4E5);
    color: var(--sp-color-orange-text, #B86E00);
}
.sp-reviews__nav:focus { outline: none; }
.sp-reviews__nav:focus-visible {
    outline: 2px solid var(--sp-color-orange, #F5A623);
    outline-offset: 2px;
}
.sp-reviews__nav[hidden] { display: none; }
.sp-reviews__nav--prev { left: 8px; }
.sp-reviews__nav--next { right: 8px; }
.sp-reviews__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 16px;
}
.sp-reviews__track::-webkit-scrollbar { display: none; }
.sp-reviews__track:focus { outline: none; }
.sp-reviews__track:focus-visible {
    outline: 2px solid var(--sp-color-orange, #F5A623);
    outline-offset: -2px;
    border-radius: 6px;
}
.sp-reviews__card {
    flex: 0 0 calc((100% - 40px) / 3);
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--sp-color-border-subtle, #EDEDED);
    border-radius: 12px;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-width: 0;
}
/* --- Quote (top of card, full width) --- */
.sp-reviews .sp-reviews__text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--sp-color-text-primary, #1A1A1A);
    margin: 0 0 18px;
    flex: 1;
}
/* --- Card footer (bottom row: meta left, trust right) --- */
.sp-reviews__card-footer {
    padding-top: 16px;
    border-top: 1px solid var(--sp-color-divider, #F0F0F0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.sp-reviews__meta {
    flex: 1;
    min-width: 0;
}
.sp-reviews .sp-reviews__name {
    font-size: 13px;
    font-weight: 500;
    color: var(--sp-color-text-primary, #1A1A1A);
    line-height: 1.3;
    margin: 0;
    text-align: left;
}
.sp-reviews__submeta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 0;
    flex-wrap: wrap;
    line-height: 1.3;
}
.sp-reviews .sp-reviews__tour {
    font-size: 12px;
    color: var(--sp-color-text-secondary, #6B6B6B);
}
.sp-reviews .sp-reviews__tour a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.sp-reviews .sp-reviews__tour a:hover { border-bottom-color: var(--sp-color-text-secondary, #6B6B6B); }
.sp-reviews__sep {
    color: #D0D0D0;
    font-size: 11px;
    line-height: 1;
}
.sp-reviews .sp-reviews__posted {
    font-size: 11px;
    color: var(--sp-color-text-muted, #888888);
}
/* --- Trust (right side of footer: rating + verified stacked) --- */
.sp-reviews__trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}
.sp-reviews__rating {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.sp-reviews .sp-reviews__rating-num {
    font-family: var(--sp-font-serif, Georgia, 'Times New Roman', serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--sp-color-orange, #F5A623);
    line-height: 1;
}
.sp-reviews .sp-reviews__rating-of {
    font-size: 11px;
    color: var(--sp-color-text-secondary, #6B6B6B);
}
.sp-reviews__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--sp-color-teal, #0F6E56);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}
.sp-reviews__verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sp-reviews__verified-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}
.sp-reviews__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.sp-reviews__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sp-color-border-subtle, #EDEDED);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, width 0.2s ease, border-radius 0.2s ease;
}
.sp-reviews__dot:hover { background: var(--sp-color-text-muted, #888888); }
.sp-reviews__dot--active {
    background: var(--sp-color-orange, #F5A623);
    width: 24px;
    border-radius: 40px;
}
.sp-reviews__dot[hidden] { display: none; }
.sp-reviews__dot:focus { outline: none; }
.sp-reviews__dot:focus-visible {
    outline: 2px solid var(--sp-color-orange, #F5A623);
    outline-offset: 2px;
}
.sp-reviews__footer {
    text-align: center;
    margin-top: 24px;
}
.sp-reviews__read-all {
    font-size: 14px;
    color: var(--sp-color-blue, #2C5F8D);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.sp-reviews__read-all:hover {
    border-bottom-color: var(--sp-color-blue, #2C5F8D);
    text-decoration: none;
}
@media (max-width: 768px) {
    .sp-reviews { padding: 48px 0 40px; }
    .sp-reviews .sp-reviews__title { font-size: 24px; }
    .sp-reviews .sp-reviews__subtitle { font-size: 14px; }
    .sp-reviews__slider-wrap { margin: 0 -20px; }
    .sp-reviews__mask { padding: 0 20px; }
    .sp-reviews__fade { width: 36px; }
    .sp-reviews__nav { display: none; }
    .sp-reviews__track { gap: 12px; }
    .sp-reviews__card {
        flex: 0 0 calc(85% - 12px);
        padding: 22px 18px 18px;
    }
    .sp-reviews .sp-reviews__text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .sp-reviews__card-footer {
        padding-top: 14px;
        gap: 12px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .sp-reviews__nav,
    .sp-reviews__dot,
    .sp-reviews__read-all,
    .sp-reviews__fade { transition: none; }
}

/* --- Tour cards grid (scoped to #lp-tours section) --- */
.tour-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 24px;
}
.tour-card {
    background: #fff;
    border: 0.5px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.tour-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.tour-card__link {
    color: inherit;
    text-decoration: none;
    display: grid;
    grid-template-rows: auto 1fr auto;
    flex: 1;
}
.tour-card__link:hover { color: inherit; text-decoration: none; }
.tour-card__link:focus-visible {
    outline: 2px solid #185fa5;
    outline-offset: 2px;
    border-radius: 12px;
}
/* Stretched-link: cała karta klikalna (overlay-anchor ::after), ocena = osobny deep-link nad nim.
   Scope .lp-body — dotyczy WYŁĄCZNIE LP, nie kafelka głównego (display_tour.php). Hover/kursor oceny
   dziedziczą z css/tour-card.css (.tour-card__meta .tour_item_review__link). */
.lp-body .tour-card { position: relative; }
.lp-body .tour-card__overlay { position: absolute; inset: 0; z-index: 1; }
.lp-body .tour-card__overlay:focus-visible {
    outline: 2px solid #185fa5;
    outline-offset: 2px;
    border-radius: 12px;
}
.lp-body .tour-card .tour_item_review { position: relative; z-index: 2; width: fit-content; }
/* Dekoracyjne badge (z-index:2) leżą nad overlayem — przepuść klik do overlay, by róg karty nadal nawigował. */
.lp-body .tour-card__badges { pointer-events: none; }

.tour-card__image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.tour-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.tour-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 2;
    max-width: calc(100% - 24px);
}
.tour-card__badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #1A1A1A;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.tour-card__body {
    padding: 14px 16px 0;
    display: flex;
    flex-direction: column;
}
.tour-card__title {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #343A40;
    margin: 8px 0;
}
.tour-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5f5e5a;
    padding-bottom: 10px;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    margin-bottom: 12px;
}
.tour-card__meta-info {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 10px;
}
.tour-card__location,
.tour-card__duration-info {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
/* Rating: reuse canonical theme classes (.tour_item_review > .modal_tour_rating > .av_rating)
   from main.css for visual parity with /tours/. Three overrides needed inside LP scope:
   (a) reset position:absolute → static (main.css absolute-positions it for .tour_list_item context)
   (b) remove smile-icon background-image and its 28px padding-left
   (c) reset text-align (was right for the absolute case) */
.tour_item_review {
    position: static;
    bottom: auto;
    right: auto;
    text-align: left;
    display: inline-block;
    line-height: 1;
}
.modal_tour_rating {
    background-image: none;
    padding: 0;
    height: auto;
    font-size: 14px;
}
.modal_tour_rating .av_rating {
    font-style: normal;
}

/* Bezpiecznik na reguły z main.css (`.post_content ul li` + `:before`) gdy kafelek
   renderuje się wewnątrz treści artykułu — patrz tour-card.css po pełny opis.
   `!important` na geometrii i typografii gwarantuje identyczny wygląd wszędzie. */
.tour-card__highlights {
    list-style: none !important;
    padding: 0;
    margin: 0 0 12px;
}
.tour-card__highlights li {
    position: relative;
    padding: 4px 0 4px 16px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #1a1a1a;
    margin: 0 !important;
}
.tour-card__highlights li::before {
    content: "" !important;
    position: absolute;
    left: 0 !important;
    top: 10px !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50%;
    background: #5dcaa5 !important;
    color: transparent !important;
    font-size: 0 !important;
}

.tour-card__footer {
    padding: 14px 16px 16px;
    border-top: 0.5px solid rgba(0,0,0,0.08);
    background: #fafaf8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 96px;
    box-sizing: border-box;
}
.tour-card__price {
    margin: 0;
}
.tour-card__price .price-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #888780;
    letter-spacing: 0.04em;
    margin: 0;
}
.tour-card__price .price-value {
    font-size: 22px;
    font-weight: 500;
    color: #d4761a;
    line-height: 1.1;
    margin: 0;
}
.tour-card__price .price-per {
    font-size: 11px;
    color: #5f5e5a;
    margin: 0;
}
.tour-card__price--quote .price-value {
    font-size: 18px;
    line-height: 1.2;
}
.tour-card__price--quote .price-per {
    font-size: 12px;
}
.tour-card__cta {
    display: inline-block;
    background: #FAB005;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 14px 18px;
    border-radius: 6px;
    line-height: 1;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.tour-card:hover .tour-card__cta {
    background: #F08C00;
    color: #fff;
}

@media (max-width: 1023px) {
    .tour-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 767px) {
    .tour-cards-grid { grid-template-columns: 1fr; gap: 12px; }
    .tour-card__image-wrap { aspect-ratio: 3 / 2; }
    .tour-card__title { min-height: auto; }
}


/* ============================================
   Section: Why Travel With Us
   ============================================ */
.sp-why {
    background: #FFFFFF;
    padding: 4rem 1.5rem;
}
.sp-why__container {
    max-width: 1200px;
    margin: 0 auto;
}
.sp-why__header {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 720px;
}
.sp-why__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 0 1rem;
    background: var(--sp-color-orange-bg, #FFF4E5);
    color: var(--sp-color-orange-text, #B86E00);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}
.sp-why .sp-why__title {
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--sp-color-text-primary, #1A1A1A);
}
.sp-why .sp-why__subtitle {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--sp-color-text-secondary, #6B6B6B);
}
.sp-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sp-why__card {
    background: var(--sp-color-card-bg, #F7F8FA);
    border: 1px solid var(--sp-color-border-subtle, #EDEDED);
    border-radius: 12px;
    padding: 28px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sp-why__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.sp-why__icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--sp-color-orange-bg, #FFF4E5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--sp-color-orange, #F5A623);
}
.sp-why__icon-wrap svg {
    width: 24px;
    height: 24px;
    display: block;
}
.sp-why .sp-why__card-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--sp-color-text-primary, #1A1A1A);
    margin: 0 0 10px;
}
.sp-why .sp-why__card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--sp-color-text-secondary, #6B6B6B);
    margin: 0;
}
.sp-why__trust {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sp-color-border-subtle, #EDEDED);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.sp-why__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sp-color-orange, #F5A623);
}
.sp-why__trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sp-why__trust-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}
.sp-why__trust-value {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: var(--sp-color-text-primary, #1A1A1A);
}
.sp-why__trust-label {
    font-size: 12px;
    color: var(--sp-color-text-muted, #888888);
    margin-top: 2px;
}
.sp-why__trust-divider {
    width: 1px;
    height: 32px;
    background: var(--sp-color-border-subtle, #EDEDED);
}
@media (prefers-reduced-motion: reduce) {
    .sp-why__card { transition: none; }
    .sp-why__card:hover { transform: none; }
}


/* ============================================
   FAQ Section
   ============================================ */
.sp-faq {
    background: #ffffff;
    padding: 80px 24px;
}
.sp-faq__container {
    max-width: 800px;
    margin: 0 auto;
}
.sp-faq__header {
    text-align: center;
    margin-bottom: 48px;
}
.sp-faq .sp-faq__title {
    font-size: 30px;
    font-weight: 500;
    color: var(--sp-color-text-primary, #1A1A1A);
    margin: 16px 0 0;
    line-height: 1.3;
}
.sp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sp-faq__item {
    border-bottom: 1px solid var(--sp-color-border-subtle, #EDEDED);
}
.sp-faq__item:first-child {
    border-top: 1px solid var(--sp-color-border-subtle, #EDEDED);
}
.sp-faq__item summary::-webkit-details-marker { display: none; }
.sp-faq__item summary::marker { content: ''; }
.sp-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}
.sp-faq__question:hover { color: var(--sp-color-orange-text, #B86E00); }
.sp-faq .sp-faq__question-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--sp-color-text-primary, #1A1A1A);
    line-height: 1.4;
}
.sp-faq__icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.sp-faq__icon::before,
.sp-faq__icon::after {
    content: '';
    position: absolute;
    background: var(--sp-color-text-secondary, #6B6B6B);
    transition: transform 0.25s ease, background 0.25s ease;
}
.sp-faq__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}
.sp-faq__icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}
.sp-faq__item[open] .sp-faq__icon::after { transform: translateX(-50%) rotate(90deg); }
.sp-faq__item[open] .sp-faq__icon::before,
.sp-faq__item[open] .sp-faq__icon::after { background: var(--sp-color-orange, #F5A623); }
.sp-faq__answer {
    padding: 0 0 24px;
    color: var(--sp-color-text-secondary, #6B6B6B);
    line-height: 1.7;
}
.sp-faq .sp-faq__answer p {
    margin: 0 0 12px;
    font-size: 16px;
    color: var(--sp-color-text-secondary, #6B6B6B);
}
.sp-faq .sp-faq__answer p:last-child { margin-bottom: 0; }
.sp-faq__link {
    color: var(--sp-color-blue, #2C5F8D);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.sp-faq__link:hover { border-bottom-color: var(--sp-color-blue, #2C5F8D); }
@media (max-width: 768px) {
    .sp-faq { padding: 56px 20px; }
    .sp-faq__header { margin-bottom: 32px; }
    .sp-faq .sp-faq__title { font-size: 24px; }
    .sp-faq .sp-faq__question-text { font-size: 16px; }
    .sp-faq__question { padding: 20px 0; }
    .sp-faq .sp-faq__answer p { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
    .sp-faq__question,
    .sp-faq__icon::before,
    .sp-faq__icon::after,
    .sp-faq__link { transition: none; }
}

/* --- LP Footer (minimal) --- */
.lp-footer {
    background: #16001C;
    color: rgba(255,255,255,0.7);
    padding: 40px 0;
    font-size: 14px;
    line-height: 1.7;
}
.lp-footer a { color: rgba(255,255,255,0.85); }
.lp-footer a:hover { color: #fff; }
.lp-footer__logo { margin-bottom: 12px; }
.lp-footer__logo img { height: 32px; filter: brightness(0) invert(1); }
.lp-footer__links {
    margin-top: 16px;
}
.lp-footer__links a {
    margin-right: 16px;
    font-size: 13px;
}
.lp-footer__cards {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}


/* --- Section currency note (under section heading) --- */
.lp-section__subtitle:has(+ .sp-section-currency-note) {
    margin-bottom: 10px;
}
.sp-section-currency-note {
    font-size: 12px;
    color: #868E96;
    margin: 0 0 40px;
    line-height: 1.4;
    text-align: center;
}
.sp-section-currency-note a {
    color: #228AE6;
    text-decoration: none;
    border-bottom: 1px dotted #228AE6;
    transition: border-bottom-style 0.15s ease;
}
.sp-section-currency-note a:hover { border-bottom-style: solid; }


/* --- Responsive --- */
@media (max-width: 991px) {
    .lp-hero { min-height: 440px; padding: 48px 0; }
    .lp-hero h1 { font-size: 34px; }
    .lp-section__title { font-size: 26px; }
}
@media (max-width: 767px) {
    .lp-hero { min-height: 400px; padding: 48px 0; }
    .lp-hero h1 { font-size: 28px; }
    .lp-hero__sub { font-size: 16px; }
    .lp-usp { gap: 12px; }
    .lp-usp__item { flex: 0 0 calc(50% - 6px); font-size: 14px; }
    .lp-section { padding: 40px 0; }
    .lp-section__title { font-size: 24px; }
    .lp-footer { text-align: center; }
}

/* --- Why Travel With Us — responsive --- */
@media (max-width: 992px) {
    .sp-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .sp-why { padding: 3rem 1.25rem; }
    .sp-why__header { margin-bottom: 2rem; }
    .sp-why .sp-why__title { font-size: 24px; }
    .sp-why .sp-why__subtitle { font-size: 15px; }
    .sp-why__grid { grid-template-columns: 1fr; gap: 16px; }
    .sp-why__card { padding: 24px 20px; }
    .sp-why__trust { gap: 20px; }
    .sp-why__trust-divider { display: none; }
}
