/* WP Travel Tours — Single Page CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.wptt-single-body { margin: 0; padding: 0; background: #f4f7fb; font-family: 'Poppins', sans-serif; }
.wptt-single-wrap { max-width: 1200px; margin: 0 auto; padding: 0 0 60px; }

/* ══ HERO ══ */
.wptt-hero { background: #fff; border-radius: 0 0 24px 24px; box-shadow: 0 4px 24px rgba(0,0,0,.07); overflow: hidden; }

.wptt-hero__gallery { display: grid; grid-template-rows: auto auto; gap: 10px; padding: 16px 16px 0; }
.wptt-hero__main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/7;
    background: #1a1a2e;
    cursor: pointer;
}
.wptt-hero__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease, opacity .3s ease;
}
.wptt-hero__main img.wptt-fade { opacity: 0; transform: scale(1.02); }

.wptt-hero__badge {
    position: absolute; top: 16px; right: 16px; z-index: 5;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff; font-size: 12px; font-weight: 700;
    padding: 5px 14px; border-radius: 20px; letter-spacing: .5px;
    box-shadow: 0 2px 8px rgba(231,76,60,.4);
}

/* Hero arrows */
.wptt-hero__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.92); border: none; border-radius: 50%;
    width: 44px; height: 44px; font-size: 26px; font-weight: 700;
    color: var(--wptt-text-dark, #1a1a2e); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.18); transition: all .2s; z-index: 10; padding: 0; line-height: 1;
}
.wptt-hero__arrow--prev { left: 14px; }
.wptt-hero__arrow--next { right: 14px; }
.wptt-hero__arrow:hover { background: var(--wptt-primary, #00bcd4); color: #fff; transform: translateY(-50%) scale(1.08); }

/* Thumbnails */
.wptt-hero__thumbs {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px;
    scrollbar-width: thin; scrollbar-color: #dde3ea transparent;
}
.wptt-thumb {
    flex: 0 0 90px; height: 62px; border-radius: 8px; overflow: hidden;
    cursor: pointer; border: 2.5px solid transparent; transition: border-color .2s, transform .2s;
}
.wptt-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.wptt-thumb--active { border-color: var(--wptt-primary, #00bcd4); transform: scale(1.04); }
.wptt-thumb:hover { border-color: var(--wptt-primary, #00bcd4); }

/* Hero info */
.wptt-hero__info { padding: 20px 24px 24px; }
.wptt-breadcrumb { font-size: 12px; color: #9ca3af; margin-bottom: 10px; }
.wptt-breadcrumb a { color: var(--wptt-primary, #00bcd4); text-decoration: none; }
.wptt-breadcrumb a:hover { text-decoration: underline; }
.wptt-hero__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.wptt-tag { background: rgba(0,188,212,.1); color: var(--wptt-primary,#00bcd4); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.wptt-tag--loc { background: #f0f4f8; color: #6b7280; }
.wptt-hero__title { font-size: clamp(22px, 4vw, 36px); font-weight: 800; color: var(--wptt-text-dark,#1a1a2e); margin: 0 0 10px; line-height: 1.2; }
.wptt-hero__rating { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ══ LAYOUT ══ */
.wptt-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; padding: 28px 20px 0; align-items: start; }
@media (max-width: 900px) { .wptt-layout { grid-template-columns: 1fr; } }

/* ══ STATS BAR ══ */
.wptt-stats-bar {
    display: flex; flex-wrap: wrap; gap: 0;
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06); margin-bottom: 24px;
}
.wptt-stat {
    flex: 1 1 130px;
    display: flex; align-items: center; gap: 10px;
    padding: 16px 18px;
    border-right: 1px solid #f0f4f8;
    transition: background .2s;
}
.wptt-stat:last-child { border-right: none; }
.wptt-stat:hover { background: #f8fafc; }
.wptt-stat__icon { font-size: 22px; }
.wptt-stat strong { display: block; font-size: 14px; font-weight: 700; color: var(--wptt-text-dark,#1a1a2e); line-height: 1.2; }
.wptt-stat small  { display: block; font-size: 11px; color: #9ca3af; }

/* ══ SECTIONS ══ */
.wptt-section { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.05); margin-bottom: 20px; }
.wptt-section__title { font-size: 18px; font-weight: 700; color: var(--wptt-text-dark,#1a1a2e); margin: 0 0 16px; padding-bottom: 12px; border-bottom: 2px solid #f0f4f8; }
.wptt-overview { line-height: 1.8; color: #4b5563; font-size: 15px; }
.wptt-overview p { margin: 0 0 12px; }

/* Note */
.wptt-note {
    background: #fffbeb; border-left: 4px solid #f59e0b; border-radius: 10px;
    padding: 14px 18px; color: #92400e; font-size: 14px;
    margin-bottom: 20px; line-height: 1.6;
}

/* Highlights */
.wptt-highlights-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wptt-highlights-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #374151; padding: 10px 14px; background: #f8fafc; border-radius: 8px; }
.wptt-highlights-list li::before { content: '✓'; color: var(--wptt-primary,#00bcd4); font-weight: 700; flex-shrink: 0; }
@media (max-width:600px) { .wptt-highlights-list { grid-template-columns: 1fr; } }

/* Itinerary */
.wptt-itinerary { display: flex; flex-direction: column; gap: 0; }
.wptt-itin-item { display: flex; gap: 0; position: relative; }
.wptt-itin-item::before {
    content: ''; position: absolute; left: 32px; top: 44px; bottom: 0;
    width: 2px; background: #e5e7eb; z-index: 0;
}
.wptt-itin-item:last-child::before { display: none; }
.wptt-itin-day {
    flex-shrink: 0; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
    background: var(--wptt-primary,#00bcd4); color: #fff; font-size: 11px; font-weight: 700;
    border-radius: 50%; text-align: center; line-height: 1.2; z-index: 1;
    flex-direction: column; margin-right: 16px; margin-bottom: 20px; align-self: flex-start;
    flex: 0 0 64px; box-shadow: 0 2px 8px rgba(0,188,212,.3);
}
.wptt-itin-body { flex: 1; padding-bottom: 24px; }
.wptt-itin-toggle {
    width: 100%; text-align: left; background: #f8fafc; border: none; border-radius: 10px;
    padding: 14px 16px; font-size: 15px; font-weight: 600; color: var(--wptt-text-dark,#1a1a2e);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-family: 'Poppins', sans-serif; transition: background .2s;
}
.wptt-itin-toggle:hover { background: rgba(0,188,212,.08); }
.wptt-itin-arrow { transition: transform .25s; font-size: 18px; color: var(--wptt-primary,#00bcd4); }
.wptt-itin-item.is-open .wptt-itin-arrow { transform: rotate(90deg); }
.wptt-itin-desc { padding: 12px 16px 0; font-size: 14px; color: #4b5563; line-height: 1.7; display: none; }
.wptt-itin-desc p { margin: 0 0 8px; }

/* Included / Excluded */
.wptt-inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width:600px) { .wptt-inc-exc-grid { grid-template-columns: 1fr; } }
.wptt-inc-exc-col h3 { font-size: 15px; font-weight: 700; margin: 0 0 12px; }
.wptt-inc-exc-col     h3 { color: #27ae60; }
.wptt-inc-exc-col--exc h3 { color: #e74c3c; }
.wptt-inc-exc-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.wptt-inc-exc-col li { font-size: 14px; color: #374151; display: flex; align-items: flex-start; gap: 8px; padding: 8px 12px; background: #f8fafc; border-radius: 8px; }
.wptt-inc-exc-col     li::before { content: '✓'; color: #27ae60; font-weight: 700; flex-shrink: 0; }
.wptt-inc-exc-col--exc li::before { content: '✕'; color: #e74c3c; }

/* FAQ */
.wptt-faq { display: flex; flex-direction: column; gap: 10px; }
.wptt-faq-item { border: 1.5px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.wptt-faq-q {
    width: 100%; text-align: left; background: #fff; border: none;
    padding: 16px 18px; font-size: 15px; font-weight: 600; color: var(--wptt-text-dark,#1a1a2e);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-family: 'Poppins', sans-serif; transition: background .2s;
}
.wptt-faq-q:hover { background: #f8fafc; }
.wptt-faq-arrow { font-size: 22px; color: var(--wptt-primary,#00bcd4); transition: transform .25s; font-weight: 400; }
.wptt-faq-item.is-open .wptt-faq-arrow { transform: rotate(45deg); }
.wptt-faq-a { display: none; padding: 0 18px 16px; font-size: 14px; color: #4b5563; line-height: 1.7; border-top: 1px solid #f0f4f8; padding-top: 14px; }
.wptt-faq-a p { margin: 0 0 8px; }

/* Map */
.wptt-map-wrap { border-radius: 12px; overflow: hidden; }

/* ══ SIDEBAR / BOOKING CARD ══ */
.wptt-sidebar { position: sticky; top: 20px; }
.wptt-booking-card {
    background: #fff; border-radius: 20px; padding: 28px 24px;
    box-shadow: 0 4px 28px rgba(0,0,0,.1);
    border: 2px solid rgba(0,188,212,.1);
}
.wptt-booking-price { text-align: center; margin-bottom: 20px; }
.wptt-booking-from  { display: block; font-size: 13px; color: #9ca3af; margin-bottom: 4px; }
.wptt-booking-amount { display: block; font-size: 42px; font-weight: 800; color: var(--wptt-accent,#e74c3c); line-height: 1; }
.wptt-booking-per { display: block; font-size: 12px; color: #9ca3af; margin-top: 4px; }

.wptt-booking-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; padding: 14px 16px; background: #f8fafc; border-radius: 10px; }
.wptt-booking-info span { font-size: 13px; color: #4b5563; font-weight: 500; }

.wptt-booking-btn {
    display: block; width: 100%; text-align: center; text-decoration: none;
    background: linear-gradient(135deg, var(--wptt-primary,#00bcd4), #0097a7);
    color: #fff; font-size: 17px; font-weight: 700; font-family: 'Poppins', sans-serif;
    padding: 16px; border-radius: 12px; transition: all .25s;
    box-shadow: 0 4px 16px rgba(0,188,212,.35); margin-bottom: 12px;
    letter-spacing: .3px;
}
.wptt-booking-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,188,212,.45); color: #fff; text-decoration: none; }

.wptt-whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; text-align: center; text-decoration: none;
    background: #25d366; color: #fff; font-size: 15px; font-weight: 600;
    font-family: 'Poppins', sans-serif; padding: 13px; border-radius: 12px;
    transition: all .25s; box-shadow: 0 4px 12px rgba(37,211,102,.3);
    margin-bottom: 16px; box-sizing: border-box;
}
.wptt-whatsapp-btn:hover { background: #20ba5a; transform: translateY(-1px); color: #fff; text-decoration: none; }

.wptt-contact-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.wptt-contact-list a { font-size: 13px; color: #4b5563; text-decoration: none; display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: #f8fafc; border-radius: 8px; transition: background .2s; }
.wptt-contact-list a:hover { background: rgba(0,188,212,.08); color: var(--wptt-primary,#00bcd4); }

.wptt-booking-trust { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid #f0f4f8; }
.wptt-booking-trust span { font-size: 12px; color: #6b7280; display: flex; align-items: center; gap: 6px; }

/* ── Single page SVG icon span ── */
.wptt-si {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  vertical-align: middle;
}
.wptt-si svg {
  display: block;
  flex-shrink: 0;
}
/* Stat bar icons */
.wptt-stat__icon .wptt-si svg { width: 20px; height: 20px; }
.wptt-stat__icon { display: flex; align-items: center; justify-content: center; }
/* Section title icons */
.wptt-section__title .wptt-si { margin-right: 6px; }
.wptt-section__title .wptt-si svg { stroke: var(--wptt-primary, #f59e0b); }
/* Note warning icon */
.wptt-note .wptt-si svg { stroke: #92400e; }
/* Star badge */
.wptt-star-badge .wptt-si { margin-right: 4px; }
.wptt-star-badge .wptt-si svg { fill: #fff; }
