* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
    color: #2d3748;
    overflow-x: hidden;
}

.highlight {
    color: #ff823a;
}

/* 7 KÉPES DINAMIKUS DIAVETÍTÉS */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: scale(1);
    animation: imageFadeScale 24s linear infinite; 
}

.slide-1 { animation-delay: 0s; }
.slide-2 { animation-delay: 4s; }
.slide-3 { animation-delay: 8s; }
.slide-4 { animation-delay: 12s; }
.slide-5 { animation-delay: 16s; }
.slide-6 { animation-delay: 20s; }

@keyframes imageFadeScale {
    0% { opacity: 0; transform: scale(1); }
    3% { opacity: 1; }
    14% { opacity: 1; }
    17% { opacity: 0; transform: scale(1.06); }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.75) 0%, rgba(42, 82, 152, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* MOZGÓ TICKER */
.ticker-wrap {
    width: 100%; overflow: hidden; background: #bc84ee; box-shadow: 0 4px 10px rgba(0,0,0,0.1); white-space: nowrap; padding: 15px 0;
}
.ticker {
    display: inline-block; animation: marquee 25s linear infinite;
}
.ticker-item {
    display: inline-block; padding: 0 2rem; font-size: 1.1rem; color: white; font-weight: 600;
}
.ticker-item i { color: #dcfd8b; margin-right: 5px; }
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* VISUAL INTRO & LEBEGŐ KÉP */
.visual-intro { max-width: 1140px; margin: 80px auto; padding: 0 20px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; } }
.floating-img { width: 100%; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); animation: float 6s ease-in-out infinite; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.intro-text h2 { font-family: 'Comfortaa', cursive; font-size: 2.5rem; margin-bottom: 20px; }
.intro-text p { font-size: 1.1rem; line-height: 1.7; color: #4a5568; margin-bottom: 30px; }
.stats-counter { display: flex; gap: 20px; }
.stat-box { background: white; padding: 15px 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; flex: 1; }
.stat-box strong { display: block; font-size: 1.8rem; color: #ff823a; }
.stat-box span { font-size: 0.9rem; color: #718096; }

/* PULSATING BUTTONS */
.btn-primary {
    display: inline-block; background-color: #ff823a; color: white; padding: 18px 45px; font-size: 1.2rem; font-weight: bold; text-decoration: none; border-radius: 50px; box-shadow: 0 10px 25px rgba(255, 130, 58, 0.4); transition: transform 0.2s;
}
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* INTERAKTÍV JELLEMZŐ KÁRTYÁK */
.features { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; padding: 40px 20px; background: #eef2f5; }
.card { background: white; padding: 30px; border-radius: 20px; width: 340px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); cursor: pointer; transition: all 0.3s ease; }
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.card .icon { font-size: 3rem; color: #ff823a; margin-bottom: 15px; }
.click-more { font-size: 0.8rem; color: #94a3b8; display: block; margin-top: 5px; }
.extra-info { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #64748b; font-style: italic; }
.card.active .extra-info { max-height: 100px; margin-top: 15px; border-top: 1px solid #f1f5f9; padding-top: 10px; }

/* FORMOK */
.booking-form { margin-top: 30px; }
.form-group { margin-bottom: 20px; }
.booking-form input { width: 100%; padding: 15px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 1rem; outline: none; transition: border-color 0.2s; }
.booking-form input:focus { border-color: #ff823a; }
.btn-submit { width: 100%; background-color: #2a5298; color: white; padding: 15px; border: none; border-radius: 12px; font-size: 1.2rem; font-weight: bold; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background-color: #1e3c72; }

/* 🌐 ANGOLOS DÁTUM VÁLASZTÓ EGYSÉG STÍLUSAI */
.english-date-picker {
    display: flex;
    gap: 10px;
    width: 100%;
}

.english-date-picker select {
    flex: 1;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: white;
    outline: none;
    transition: border-color 0.2s;
    color: #2d3748;
}

.english-date-picker select:focus {
    border-color: #ff823a;
}

/* Mobilnézet optimalizálás a dátumválasztónak */
@media (max-width: 480px) {
    .english-date-picker {
        flex-direction: column;
        gap: 8px;
    }
}

/* LÁTVÁNYOS NAPPALI/ÉJSZAKAI KÉPES IKONKÁRTYÁK A TÚRATERVEZŐBEN */
.poi-grid {
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
}

.poi-card.poi-photo-card {
    padding: 0;
    overflow: hidden;
    background: white;
    border-color: #e2e8f0;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.poi-card.poi-photo-card:hover {
    border-color: #bc84ee;
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.poi-card.poi-photo-card.selected {
    background: white;
    border-color: #ff823a;
    box-shadow: 0 0 0 4px rgba(255, 130, 58, 0.18), 0 16px 35px rgba(15, 23, 42, 0.12);
}

.poi-card.poi-photo-card .poi-photo {
    position: relative;
    height: 124px;
    overflow: hidden;
    background: #1e293b;
}

.poi-card.poi-photo-card .poi-photo::before,
.poi-card.poi-photo-card .poi-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.poi-card.poi-photo-card .poi-photo::before {
    background-image: var(--poi-day);
    animation: poiDayFade 8s ease-in-out infinite;
}

.poi-card.poi-photo-card .poi-photo::after {
    background-image: var(--poi-night);
    animation: poiNightFade 8s ease-in-out infinite;
}

.poi-card.poi-photo-card:hover .poi-photo::before,
.poi-card.poi-photo-card:hover .poi-photo::after {
    animation-duration: 4.5s;
    transform: scale(1.08);
}

@keyframes poiDayFade {
    0%, 42% { opacity: 1; }
    52%, 90% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes poiNightFade {
    0%, 42% { opacity: 0; }
    52%, 90% { opacity: 1; }
    100% { opacity: 0; }
}

.daynight-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    color: white;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(7px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.poi-card.poi-photo-card input[type="checkbox"] {
    top: 12px;
    right: 12px;
    z-index: 3;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.35));
}

.poi-card.poi-photo-card h4 {
    margin: 0;
    padding: 14px 44px 4px 16px;
    color: #1e3c72;
}

.poi-card.poi-photo-card span:not(.daynight-badge) {
    padding: 0 16px 16px 16px;
    min-height: 48px;
}

@media (prefers-reduced-motion: reduce) {
    .poi-card.poi-photo-card .poi-photo::before,
    .poi-card.poi-photo-card .poi-photo::after {
        animation: none;
    }
    .poi-card.poi-photo-card .poi-photo::after {
        opacity: 0;
    }
}

/* ===== Laugh Track polish layer - keeps original planner and images intact ===== */
.topbar {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 28px));
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
}
.brand-mini,
.topbar a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}
.brand-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.brand-mini img { width: 28px; height: 28px; border-radius: 8px; }
.topbar-links { display: flex; align-items: center; gap: 6px; }
.topbar-links a { padding: 9px 14px; border-radius: 999px; font-size: 0.92rem; }
.topbar-links a:hover { background: rgba(255,255,255,0.14); }
.topbar-cta { background: #ff823a; box-shadow: 0 8px 18px rgba(255,130,58,0.25); }

.poi-language-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
    padding-left: 4px;
}
.poi-language-switcher button {
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: white;
    cursor: pointer;
    font-weight: 900;
    font-size: .76rem;
    padding: 7px 9px;
    line-height: 1;
}
.poi-language-switcher button.active,
.poi-language-switcher button:hover {
    background: #dcfd8b;
    color: #1e3c72;
}


.hero {
    min-height: 680px;
    height: 88vh;
}
.hero-overlay {
    background: radial-gradient(circle at 50% 35%, rgba(255,130,58,0.28), transparent 36%), linear-gradient(135deg, rgba(10, 18, 38, 0.78) 0%, rgba(30, 60, 114, 0.72) 55%, rgba(188,132,238,0.56) 100%);
}
.hero-content { max-width: 940px; }
.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dcfd8b;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}
.hero h1 {
    max-width: 930px;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    line-height: 1.02;
    margin-left: auto;
    margin-right: auto;
}
.hero p { max-width: 820px; font-size: clamp(1.05rem, 2vw, 1.45rem); }
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.btn-secondary {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.65);
    font-weight: 800;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: transform .2s, background .2s;
}
.btn-secondary:hover { transform: translateY(-2px); background: rgba(255,255,255,0.18); }
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    background: rgba(15,23,42,0.45);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 700;
}

.trust-strip {
    max-width: 1140px;
    margin: -36px auto 72px;
    padding: 18px;
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.trust-strip div {
    background: white;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(15,23,42,0.12);
    border: 1px solid rgba(148,163,184,0.22);
}
.trust-strip strong { display: block; font-family: 'Comfortaa', cursive; color: #1e3c72; margin-bottom: 4px; }
.trust-strip span { color: #64748b; font-size: .92rem; }

.section-heading {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
    padding: 0 20px;
}
.section-heading .eyebrow {
    color: #2a5298;
    background: #eef2f5;
    border: 1px solid #dbe3ee;
}
.section-heading h2 {
    font-family: 'Comfortaa', cursive;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.12;
    margin-bottom: 12px;
    color: #1e3c72;
}
.section-heading p { color: #64748b; font-size: 1.08rem; line-height: 1.7; }

.daynight-showcase {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.showcase-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15,23,42,0.09);
    border: 1px solid rgba(148,163,184,0.2);
    transition: transform .24s ease, box-shadow .24s ease;
}
.showcase-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(15,23,42,0.14); }
.showcase-photo {
    position: relative;
    height: 210px;
    background: #111827;
    overflow: hidden;
}
.showcase-photo::before,
.showcase-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    animation: showcaseDayNight 8.5s ease-in-out infinite;
}
.showcase-photo::before { background-image: var(--day); }
.showcase-photo::after { background-image: var(--night); animation-name: showcaseNightDay; }
.showcase-photo span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    color: white;
    background: rgba(15,23,42,.72);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: .78rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}
@keyframes showcaseDayNight { 0%, 43% { opacity: 1; } 54%, 90% { opacity: 0; } 100% { opacity: 1; } }
@keyframes showcaseNightDay { 0%, 43% { opacity: 0; } 54%, 90% { opacity: 1; } 100% { opacity: 0; } }
.showcase-card h3 {
    color: #1e3c72;
    font-family: 'Comfortaa', cursive;
    padding: 20px 20px 8px;
}
.showcase-card p { padding: 0 20px 22px; color: #64748b; line-height: 1.6; }

.how-it-works {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 55%, #bc84ee 100%);
    color: white;
    padding: 82px 20px;
    margin: 90px 0 30px;
}
.how-it-works .section-heading h2,
.how-it-works .section-heading p { color: white; }
.how-it-works .section-heading .eyebrow { background: rgba(255,255,255,0.14); color: #dcfd8b; border-color: rgba(255,255,255,0.2); }
.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.step-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 26px;
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(15,23,42,0.14);
}
.step-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dcfd8b;
    color: #275204;
    font-weight: 900;
    margin-bottom: 16px;
}
.step-card h3 { font-family: 'Comfortaa', cursive; margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,0.86); line-height: 1.65; }

.booking-note,
.form-smallprint {
    color: #64748b;
    font-size: .95rem;
    line-height: 1.6;
    margin-top: 8px;
}
.form-smallprint { text-align: center; margin-top: 14px; }

.final-cta {
    max-width: 980px;
    margin: 80px auto 40px;
    padding: 48px 24px;
    border-radius: 34px;
    text-align: center;
    color: white;
    background: radial-gradient(circle at 20% 20%, rgba(220,253,139,.42), transparent 32%), linear-gradient(135deg, #2a5298, #1e3c72);
    box-shadow: 0 24px 70px rgba(30,60,114,.24);
}
.final-cta h2 { font-family: 'Comfortaa', cursive; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.final-cta p { max-width: 720px; margin: 0 auto 28px; line-height: 1.7; font-size: 1.08rem; }
.site-footer {
    text-align: center;
    color: #64748b;
    padding: 28px 20px 45px;
}

@media (max-width: 900px) {
    .trust-strip,
    .showcase-grid,
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .topbar { border-radius: 24px; align-items: flex-start; }
}
@media (max-width: 680px) {
    .topbar { position: absolute; top: 10px; flex-direction: column; align-items: stretch; border-radius: 22px; }
    .topbar-links { justify-content: space-between; }
    .topbar-links a { font-size: .84rem; padding: 8px 10px; }
    .poi-language-switcher { justify-content: center; flex-wrap: wrap; }
    .hero { min-height: 760px; padding-top: 130px; }
    .trust-strip,
    .showcase-grid,
    .steps-grid { grid-template-columns: 1fr; }
    .trust-strip { margin-top: -24px; }
    .stats-counter { flex-direction: column; }
}


/* ===== Admin-szerkeszthető helyszínsztorik + régi fotók ===== */
.poi-extra-panel {
    cursor: pointer;
    margin: 0 16px 16px;
    padding-top: 12px;
    border-top: 1px solid #edf2f7;
}

.poi-extra-teaser {
    margin: 0 0 10px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.45;
}

.poi-extra-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.poi-mini-btn {
    display: inline-block;
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    padding: 8px 11px;
    background: #ff823a;
    color: white;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(255,130,58,0.22);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.poi-mini-btn:hover {
    transform: translateY(-1px);
    background: #f26f22;
    box-shadow: 0 11px 23px rgba(255,130,58,0.28);
}

.poi-mini-btn-old {
    background: #2a5298;
    box-shadow: 0 8px 18px rgba(42,82,152,0.2);
}

.poi-mini-btn-old:hover {
    background: #1e3c72;
    box-shadow: 0 11px 23px rgba(42,82,152,0.26);
}

.poi-mini-btn-map {
    background: #275204;
    box-shadow: 0 8px 18px rgba(39,82,4,0.18);
}

.poi-mini-btn-map:hover {
    background: #1f4203;
    box-shadow: 0 11px 23px rgba(39,82,4,0.24);
}

body.modal-open {
    overflow: hidden;
}

.poi-story-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.poi-story-modal.active {
    display: flex;
}

.poi-story-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.68);
    backdrop-filter: blur(8px);
}

.poi-story-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(86vh, 860px);
    overflow: auto;
    background: white;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 30px 90px rgba(15,23,42,0.35);
    border: 1px solid rgba(255,255,255,0.35);
}

.poi-story-close {
    position: sticky;
    top: 0;
    float: right;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: #eef2f5;
    color: #1e3c72;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    font-weight: 700;
}

.poi-story-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #2a5298;
    background: #eef2f5;
    border: 1px solid #dbe3ee;
    font-weight: 800;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.poi-story-dialog h3 {
    clear: both;
    margin: 0 0 16px;
    color: #1e3c72;
    font-family: 'Comfortaa', cursive;
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    line-height: 1.15;
}

.poi-story-image {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 22px;
    margin: 6px 0 18px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.14);
}

.poi-story-text p {
    color: #475569;
    line-height: 1.75;
    margin: 0 0 14px;
    font-size: 1.04rem;
}

@media (max-width: 560px) {
    .poi-story-dialog { padding: 24px 20px; border-radius: 24px; }
    .poi-extra-actions { flex-direction: column; align-items: flex-start; }
}


/* Site-wide language support */
body.site-rtl { direction: rtl; }
body.site-rtl .hero-content,
body.site-rtl .intro-text,
body.site-rtl .section-heading,
body.site-rtl .planner-section,
body.site-rtl .booking-form,
body.site-rtl .final-cta,
body.site-rtl .poi-story-dialog { text-align: right; }
body.site-rtl .topbar-links,
body.site-rtl .hero-actions,
body.site-rtl .hero-trust,
body.site-rtl .poi-extra-actions { direction: rtl; }
body.site-rtl .poi-card { text-align: right; }
body.site-rtl .poi-card input[type="checkbox"] { right: auto; left: 15px; }
body.site-rtl .poi-card h4 { padding-right: 0; padding-left: 20px; }
body.site-rtl .zone-title { text-align: right; }
body.site-rtl #optimized-route-list { text-align: right; padding-left: 0; padding-right: 20px; }
body.site-rtl .form-group label { text-align: right !important; }


/* ===== Trust, pricing and practical sections added 2026-07 ===== */
.guide-section,
.pricing-section,
.included-section,
.practical-section {
    max-width: 1140px;
    margin: 70px auto;
    padding: 0 20px;
}
.guide-card,
.included-card {
    background: white;
    border-radius: 34px;
    padding: clamp(26px, 4vw, 46px);
    box-shadow: 0 20px 60px rgba(15,23,42,.08);
    border: 1px solid #e7edf5;
}
.guide-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 34px;
    align-items: center;
}
.guide-avatar {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 20%, #dcfd8b, #ff823a 52%, #2a5298 100%);
    box-shadow: 0 18px 44px rgba(42,82,152,.20);
}
.guide-avatar span { color: white; font-family: 'Comfortaa', cursive; font-size: 2.4rem; font-weight: 900; }
.guide-copy h2,
.included-card h2,
.pricing-section .section-heading h2 { font-family: 'Comfortaa', cursive; color: #1e3c72; }
.guide-copy p,
.included-card p { color: #475569; line-height: 1.75; font-size: 1.05rem; }
.guide-bullets { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.guide-bullets li { color: #334155; font-weight: 700; display: flex; gap: 10px; align-items: flex-start; }
.guide-bullets i { color: #ff823a; margin-top: 4px; }
.guide-placeholder { margin-top: 18px; font-size: .92rem !important; color: #64748b !important; background: #f8fafc; border-left: 4px solid #ff823a; padding: 12px 14px; border-radius: 12px; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.price-card {
    background: white;
    border-radius: 26px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 38px rgba(15,23,42,.07);
}
.price-card.featured { border: 3px solid #ff823a; transform: translateY(-6px); }
.price-kicker { display: inline-flex; background: #eef2f5; color: #2a5298; border-radius: 999px; padding: 6px 10px; font-size: .78rem; font-weight: 900; margin-bottom: 12px; }
.price-card h3 { font-family: 'Comfortaa', cursive; color: #1e3c72; margin: 0 0 10px; }
.price-card strong { display: block; color: #ff823a; margin-bottom: 12px; }
.price-card p { color: #64748b; line-height: 1.6; margin: 0; }
.included-card { display: grid; grid-template-columns: .9fr 1.4fr; gap: 28px; align-items: start; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.included-grid div { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 20px; padding: 18px; }
.included-grid i { color: #ff823a; font-size: 1.5rem; margin-bottom: 10px; }
.included-grid strong { display: block; color: #1e3c72; margin-bottom: 6px; }
.included-grid span { color: #64748b; font-size: .92rem; line-height: 1.45; }
.practical-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.practical-card { background: #1e3c72; color: white; border-radius: 22px; padding: 22px; box-shadow: 0 14px 38px rgba(30,60,114,.16); }
.practical-card strong { display: block; font-family: 'Comfortaa', cursive; font-size: 1.15rem; margin-bottom: 8px; }
.practical-card span { color: rgba(255,255,255,.82); line-height: 1.55; }
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 700;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 900;
    padding: 13px 17px;
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(37,211,102,.32);
}
.whatsapp-float i { font-size: 1.3rem; }
body.site-rtl .guide-copy,
body.site-rtl .included-card,
body.site-rtl .pricing-section .section-heading,
body.site-rtl .practical-card { text-align: right; }
body.site-rtl .guide-bullets li { flex-direction: row-reverse; }
body.site-rtl .whatsapp-float { right: auto; left: 18px; }
@media (max-width: 980px) {
    .price-grid,
    .practical-grid { grid-template-columns: repeat(2, 1fr); }
    .included-card { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .guide-card { grid-template-columns: 1fr; text-align: center; }
    .guide-avatar { margin: 0 auto; }
    .guide-bullets li { text-align: left; }
    .price-grid,
    .included-grid,
    .practical-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { width: 54px; height: 54px; justify-content: center; padding: 0; }
}
