/* ═══════════════════════════════════════════════════════════════════════
   tour-itinerary.css
   The Taj Mahal Tours — www.thetajmahaltours.com

   PURPOSE  : Universal CSS for ALL tour itinerary / detail pages
   LOAD ORDER: <link rel="stylesheet" href="css/style.css">
               <link rel="stylesheet" href="css/tour-itinerary.css">

   PREFIX   : .ti-   (Tour Itinerary — no collision with .itp- / .itm-)

   USAGE    : Add class="ti-[component]" to your HTML elements.
              Every future itinerary page uses ONLY this file + style.css.
              Page-specific overrides: add inline <style> in the PHP file.

   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────────────────────
   01. TI Hero Banner
   02. TI Quick-Facts Bar
   03. TI Sticky Enquiry Sidebar (desktop)
   04. TI Two-Column Layout (content + sidebar)
   05. TI Tour Overview
   06. TI Highlights List
   07. TI Day-by-Day Itinerary Accordion
   08. TI Inclusions & Exclusions
   09. TI FAQ Accordion
   10. TI Mid-Page CTA Strip
   11. TI Enquiry Form (inline / full-width)
   12. TI Floating WhatsApp Button
   13. TI Responsive — Mobile Breakpoints
   ═══════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════
   01. TI HERO BANNER
   ═══════════════════════════════════════════════════════════════════════ */
.ti-hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  background-color: #0d1e35;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ti-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 40, 0.96) 0%,
    rgba(10, 20, 40, 0.65) 45%,
    rgba(10, 20, 40, 0.22) 100%
  );
  z-index: 1;
}

.ti-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 52px;
}

/* Breadcrumb */
.ti-breadcrumb { margin-bottom: 14px; }

.ti-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}

.ti-breadcrumb li {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  font-family: var(--font-body);
}

.ti-breadcrumb li + li::before {
  content: "›";
  margin-right: 6px;
  color: rgba(255,255,255,0.35);
}

.ti-breadcrumb li a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: color 200ms;
}
.ti-breadcrumb li a:hover { color: #fff; }

/* Category overline */
.ti-hero__overline {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffc107;
  font-family: var(--font-body);
  margin-bottom: 12px;
}

/* H1 */
.ti-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
  text-wrap: balance;
  max-width: 820px;
}

.ti-hero__title strong { color: #ffc107; }

/* Route tag line */
.ti-hero__route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ti-hero__route svg { stroke: #ffc107; flex-shrink: 0; }

/* Hero meta pills row */
.ti-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.ti-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 20px;
  font-family: var(--font-body);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  white-space: nowrap;
}

.ti-meta-pill--highlight {
  background: rgba(255,193,7,0.18);
  border-color: rgba(255,193,7,0.45);
  color: #ffc107;
}

/* Hero CTA row */
.ti-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Scroll hint */
.ti-hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50%;
  text-decoration: none;
  animation: ti-bounce 2.2s ease-in-out infinite;
  transition: color 200ms, border-color 200ms;
}
.ti-hero__scroll:hover { color: #fff; border-color: rgba(255,255,255,0.55); }

@keyframes ti-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ═══════════════════════════════════════════════════════════════════════
   02. TI QUICK-FACTS BAR
   ═══════════════════════════════════════════════════════════════════════ */
.ti-facts {
  background: var(--blue);
  padding: 0;
}

.ti-facts__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0; padding: 0;
}

.ti-facts__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.ti-facts__item:last-child { border-right: none; }

.ti-facts__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.ti-facts__label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 2px;
}

.ti-facts__value {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-body);
  display: block;
  line-height: 1.2;
}

.ti-facts__value--accent { color: #ffc107; }


/* ═══════════════════════════════════════════════════════════════════════
   03. TI STICKY SIDEBAR (desktop — right column)
   ═══════════════════════════════════════════════════════════════════════ */
.ti-sidebar {
  position: sticky;
  top: 88px;
  height: fit-content;
}

/* Enquiry card */
.ti-sidebar__enquiry {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(26,58,92,0.14);
  border: 1px solid rgba(26,58,92,0.08);
  margin-bottom: 20px;
}

.ti-sidebar__enquiry-head {
  background: var(--blue);
  padding: 20px 22px;
}

.ti-sidebar__enquiry-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.25;
}

.ti-sidebar__enquiry-title strong { color: #ffc107; }

.ti-sidebar__enquiry-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}

.ti-sidebar__enquiry-body { padding: 20px 22px; }

/* Sidebar form fields */
.ti-sf__group { margin-bottom: 14px; }

.ti-sf__label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ti-sf__input,
.ti-sf__select,
.ti-sf__textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #1f2937;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
  appearance: none;
  -webkit-appearance: none;
}

.ti-sf__input::placeholder,
.ti-sf__textarea::placeholder { color: #9ca3af; }

.ti-sf__input:focus,
.ti-sf__select:focus,
.ti-sf__textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,58,92,0.09);
}

.ti-sf__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  cursor: pointer;
}

.ti-sf__textarea { resize: vertical; min-height: 80px; }

.ti-sf__submit {
  width: 100%;
  justify-content: center;
  padding: 13px 20px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  margin-bottom: 10px;
}

.ti-sf__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366 !important;
  color: #fff !important;
  padding: 11px 20px !important;
  border-radius: 10px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  text-decoration: none;
  width: 100%;
  transition: background 200ms, transform 200ms;
}

.ti-sf__wa-btn:hover {
  background: #1ebe5d !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.ti-sf__note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.6;
}

/* Contact card below enquiry form */
.ti-sidebar__contact {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 18px rgba(26,58,92,0.08);
  border: 1px solid rgba(26,58,92,0.07);
  margin-bottom: 20px;
}

.ti-sidebar__contact-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.ti-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--blue);
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color 200ms;
}
.ti-contact-row:last-child { margin-bottom: 0; }
.ti-contact-row:hover { color: var(--red); }

.ti-contact-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ti-contact-icon--wa { background: #25D366; }

/* Trust mini-badges in sidebar */
.ti-sidebar__trust {
  background: #f4f7fc;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(26,58,92,0.07);
}

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

.ti-sidebar__trust li {
  font-size: 12.5px;
  color: #374151;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ti-sidebar__trust li::before {
  content: "✓";
  color: #25D366;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   04. TI TWO-COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════════════════ */
.ti-layout { background: #f4f7fc; }
.ti-layout__inner { padding: clamp(32px, 5vw, 60px) 0; }

.ti-content { /* left column — natural flow */ }

/* Section card wrapper — white card inside gray bg */
.ti-card {
  background: #fff;
  border-radius: 14px;
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 24px;
  border: 1px solid rgba(26,58,92,0.07);
  box-shadow: 0 2px 14px rgba(26,58,92,0.06);
}

/* Section heading inside card */
.ti-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 18px;
  line-height: 1.25;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f2f5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ti-section-title .ti-section-icon {
  font-size: 1.2rem;
  line-height: 1;
}


/* ═══════════════════════════════════════════════════════════════════════
   05. TI TOUR OVERVIEW
   ═══════════════════════════════════════════════════════════════════════ */
.ti-overview__lead {
  font-size: 15px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 14px;
}

.ti-overview__lead strong { color: var(--blue); }


/* ═══════════════════════════════════════════════════════════════════════
   06. TI HIGHLIGHTS LIST
   ═══════════════════════════════════════════════════════════════════════ */
.ti-highlights {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.ti-highlights li {
  position: relative;       /* anchor for absolutely-positioned bullet */
  padding-left: 18px;       /* 7px dot + 11px gap                      */
  font-size: 13.5px;
  color: #374151;
  font-family: var(--font-body);
  line-height: 1.65;
  /* NOTE: display:flex removed — it caused every text node and <strong>
     to become a separate flex item, fragmenting text into columns.     */
}

.ti-highlights li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  left: 0;
  top: 7px;                 /* aligns with first-line cap-height        */
}


/* ═══════════════════════════════════════════════════════════════════════
   07. TI DAY-BY-DAY ITINERARY ACCORDION
   ═══════════════════════════════════════════════════════════════════════ */
.ti-itinerary { list-style: none; margin: 0; padding: 0; position: relative; }

/* Vertical timeline line */
.ti-itinerary::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue) 0%, rgba(26,58,92,0.10) 100%);
}

/* Each day item */
.ti-day {
  position: relative;
  padding-left: 52px;
  margin-bottom: 6px;
}

/* Day number dot */
.ti-day__dot {
  position: absolute;
  left: 10px;
  top: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue);
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-body);
  flex-shrink: 0;
  transition: background 220ms, box-shadow 220ms;
}

.ti-day.is-open .ti-day__dot {
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}

/* Accordion trigger */
.ti-day__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 14px 0;
  cursor: pointer;
  border-radius: 10px;
  transition: background 200ms;
  user-select: none;
  -webkit-user-select: none;
  list-style: none;
}

.ti-day__header:hover { background: #f4f7fc; padding-left: 10px; margin-left: -10px; }

.ti-day__header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ti-day__number {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--red);
  font-family: var(--font-body);
}

.ti-day__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin: 0;
}

.ti-day.is-open .ti-day__title { color: var(--red); }

/* Chevron */
.ti-day__chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,58,92,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: transform 300ms, background 200ms, border-color 200ms;
}

.ti-day.is-open .ti-day__chevron {
  transform: rotate(180deg);
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Accordion body */
.ti-day__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ti-day__body-inner {
  padding: 6px 0 20px 0;
}

.ti-day__desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 14px;
}

.ti-day__desc strong { color: var(--blue); }

/* Overnight badge */
.ti-day__overnight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(26,58,92,0.07);
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-body);
  margin-top: 4px;
}

/* Expand all toggle */
.ti-expand-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  background: none;
  border: 1.5px solid rgba(26,58,92,0.20);
  border-radius: 20px;
  padding: 5px 14px;
  font-family: var(--font-body);
  margin-bottom: 16px;
  transition: background 200ms, color 200ms;
}
.ti-expand-all:hover { background: var(--blue); color: #fff; border-color: var(--blue); }


/* ═══════════════════════════════════════════════════════════════════════
   08. TI INCLUSIONS & EXCLUSIONS
   ═══════════════════════════════════════════════════════════════════════ */
.ti-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ti-inc, .ti-exc { }

.ti-inc__title, .ti-exc__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: var(--font-body);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ti-inc__title { color: #1a7a4a; }
.ti-exc__title { color: #9b1c1c; }

.ti-inc__list, .ti-exc__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ti-inc__list li,
.ti-exc__list li {
  position: relative;       /* anchor for absolutely-positioned glyph  */
  padding-left: 22px;       /* room for ✓/✕ glyph + gap                */
  font-size: 13.5px;
  color: #374151;
  font-family: var(--font-body);
  line-height: 1.65;
  /* NOTE: display:flex removed — same fragmentation fix as highlights  */
}

.ti-inc__list li::before {
  content: "✓";
  color: #1a7a4a;
  font-weight: 800;
  font-size: 13px;
  position: absolute;
  left: 0;
  top: 0;
}

.ti-exc__list li::before {
  content: "✕";
  color: #9b1c1c;
  font-weight: 800;
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 1px;
}


/* ═══════════════════════════════════════════════════════════════════════
   09. TI FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════════ */
.ti-faq { list-style: none; margin: 0; padding: 0; }

.ti-faq__item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0;
}

.ti-faq__item:last-child { border-bottom: none; }

.ti-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  font-family: var(--font-body);
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
  transition: color 200ms;
}

.ti-faq__question:hover { color: var(--red); }

.ti-faq__q-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,58,92,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: transform 300ms, background 200ms;
}

.ti-faq__item.is-open .ti-faq__q-icon {
  transform: rotate(180deg);
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.ti-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ti-faq__answer-inner {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.8;
  padding: 0 0 16px 0;
}

.ti-faq__answer-inner strong { color: var(--blue); }
.ti-faq__answer-inner a { color: var(--red); font-weight: 500; }
.ti-faq__answer-inner a:hover { color: var(--blue); }


/* ═══════════════════════════════════════════════════════════════════════
   10. TI MID-PAGE CTA STRIP
   ═══════════════════════════════════════════════════════════════════════ */
.ti-midcta {
  background: var(--blue);
  padding: 44px 0;
}

.ti-midcta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ti-midcta__text { flex: 1; min-width: 240px; }

.ti-midcta__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.ti-midcta__title strong { color: #ffc107; }

.ti-midcta__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1.6;
  max-width: 520px;
}

.ti-midcta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.ti-midcta .btn_1 {
  background: #ffc107 !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 14px rgba(255,193,7,0.40) !important;
}

.ti-midcta .btn_1:hover {
  background: #e5ac00 !important;
  color: #1a1a1a !important;
}


/* ═══════════════════════════════════════════════════════════════════════
   11. TI INLINE ENQUIRY FORM (full-width, below content)
   ═══════════════════════════════════════════════════════════════════════ */
.ti-enquiry-section { background: #f4f7fc; }

.ti-enquiry__wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,58,92,0.11);
  border: 1px solid rgba(26,58,92,0.07);
}

.ti-enquiry__sidebar {
  background: var(--blue);
}

.ti-enquiry__sidebar-inner {
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ti-enquiry__sidebar-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ti-enquiry__sidebar-title strong { color: #ffc107; }

.ti-enquiry__sidebar-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 24px;
}

.ti-enquiry__sidebar-sub strong { color: #ffc107; }

.ti-enquiry__contact-list {
  list-style: none;
  margin: 0 0 20px; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ti-enquiry__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.ti-enq-contact-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: rgba(255,255,255,0.12);
  color: #ffc107;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ti-enq-contact-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.50);
  font-family: var(--font-body);
  margin-bottom: 2px;
}

.ti-enq-contact-value {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  transition: color 200ms;
}
.ti-enq-contact-value:hover { color: #ffc107; }

.ti-enquiry__wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366 !important;
  color: #fff !important;
  padding: 11px 18px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none;
  width: 100%;
  margin-bottom: 12px;
  transition: background 200ms, transform 200ms;
}
.ti-enquiry__wa-btn:hover { background: #1ebe5d !important; color: #fff !important; transform: translateY(-2px); }

.ti-enquiry__sidebar-note {
  font-size: 11px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  margin: 0;
}

/* Form column */
.ti-enquiry__form-col { background: #fff; }

.ti-enquiry__form-inner { padding: 36px 34px; }

.ti-enquiry__form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 22px;
}

/* Re-use ti-sf__ form field styles (same pattern) */

.ti-form__group { margin-bottom: 16px; }
.ti-form__label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.ti-form__req { color: var(--red); }

.ti-form__input,
.ti-form__select,
.ti-form__textarea {
  display: block;
  width: 100%;
  padding: 10px 13px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #1f2937;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms, background 200ms;
  appearance: none;
  -webkit-appearance: none;
}
.ti-form__input::placeholder,
.ti-form__textarea::placeholder { color: #9ca3af; }
.ti-form__input:focus,
.ti-form__select:focus,
.ti-form__textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,58,92,0.09);
}

.ti-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
}

.ti-form__textarea { resize: vertical; min-height: 90px; }

.ti-form__submit {
  width: 100%;
  justify-content: center;
  padding: 14px 24px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
}

.ti-form__privacy {
  font-size: 11.5px;
  color: #9ca3af;
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════════
   12. TI FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════════════════════════════ */
.ti-wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: background 200ms, box-shadow 200ms, transform 200ms;
  white-space: nowrap;
}

.ti-wa-float:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}


/* ═══════════════════════════════════════════════════════════════════════
   13. TI RESPONSIVE — MOBILE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════════ */

/* --- Large Tablets (≤1200px) --- */
@media only screen and (max-width: 1200px) {
  .ti-facts__list { grid-template-columns: repeat(3, 1fr); }
  .ti-facts__item:nth-child(3) { border-right: none; }
  .ti-facts__item:nth-child(4),
  .ti-facts__item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.10); }
}

/* --- Tablets (≤991px) --- */
@media only screen and (max-width: 991px) {
  .ti-hero { height: 80vh; min-height: 520px; align-items: flex-end; }
  .ti-hero__inner { padding-bottom: 36px; }

  .ti-sidebar { position: static; }

  .ti-facts__list { grid-template-columns: repeat(2, 1fr); }
  .ti-facts__item:nth-child(2) { border-right: none; }
  .ti-facts__item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.10); }
  .ti-facts__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.10); }
  .ti-facts__item:nth-child(5) { grid-column: span 2; border-top: 1px solid rgba(255,255,255,0.10); border-right: none; }

  .ti-midcta__inner { flex-direction: column; text-align: center; }
  .ti-midcta__sub { margin-inline: auto; }
  .ti-midcta__actions { justify-content: center; }

  .ti-enquiry__sidebar { border-radius: 16px 16px 0 0; }
  .ti-enquiry__form-inner { padding: 28px 24px; }

  .ti-inc-exc { grid-template-columns: 1fr; gap: 20px; }
}

/* --- Small Tablets (≤768px) --- */
@media only screen and (max-width: 768px) {
  .ti-highlights { grid-template-columns: 1fr; }
  .ti-enquiry__form-inner { padding: 24px 20px; }
  .ti-enquiry__sidebar-inner { padding: 28px 22px; }
  .ti-card { padding: 20px 18px; }
}

/* --- Large Phones (≤600px) --- */
@media only screen and (max-width: 600px) {
  .ti-hero {
    height: auto;
    min-height: 100svh;
    padding-top: 90px;
    padding-bottom: 40px;
    align-items: flex-start;
  }

  .ti-hero__title { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .ti-hero__ctas { flex-direction: column; align-items: stretch; }
  .ti-hero__ctas .btn_1,
  .ti-hero__ctas .btn_whatsapp { width: 100%; justify-content: center; }

  .ti-facts__list { grid-template-columns: 1fr 1fr; }
  .ti-facts__item:nth-child(5) { grid-column: span 2; }

  .ti-itinerary::before { left: 14px; }
  .ti-day { padding-left: 42px; }
  .ti-day__dot { left: 4px; width: 20px; height: 20px; }

  .ti-wa-float span { display: none; }
  .ti-wa-float {
    padding: 14px;
    border-radius: 50%;
    width: 52px; height: 52px;
    justify-content: center;
  }

  .ti-enquiry__form-inner { padding: 20px 16px; }
  .ti-enquiry__sidebar-inner { padding: 22px 18px; }
}

/* --- Small Phones (≤480px) --- */
@media only screen and (max-width: 480px) {
  .ti-hero__meta { gap: 6px; }
  .ti-meta-pill { font-size: 11px; padding: 5px 10px; }
  .ti-day__title { font-size: 0.95rem; }
  .ti-section-title { font-size: 1.1rem; }
}
