/* ══════════════════════════════════════════
   CUSTOM FONTS
══════════════════════════════════════════ */
@font-face {
  font-family: 'White Oleander';
  src: url('assets/WhiteOleander.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ══════════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════════ */
:root {
  --orange: #F97316;
  --orange-dark: #E0650A;
  --navy: #1B2035;
  --white: #FFFFFF;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.55);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  background: #ffffff;
  color: #222;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ══════════════════════════════════════════
   GLOBAL ANIMATION KEYFRAMES
══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Scroll-triggered reveal base state */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-left] {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal-left].revealed {
  opacity: 1;
  transform: translateX(0);
}

[data-reveal-right] {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal-right].revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  width: 100%;
  padding: 8px 20px;
  position: relative;
  z-index: 300;
  animation: fadeIn 0.6s ease both;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 1720px;
  margin: 0 auto;
}

.topbar__icon {
  font-size: 15px;
  flex-shrink: 0;
}

.topbar__text {
  font-size: 13.5px;
  font-weight: 400;
  color: #C8CDD8;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.topbar__text strong {
  color: var(--white);
  font-weight: 700;
}

.topbar__cta {
  color: var(--orange);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.6px;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 4px;
  transition: color 0.2s;
}

.topbar__cta:hover {
  color: #FFB27A;
}

/* --- Topbar Mobile --- */
@media (max-width: 768px) {
  .topbar {
    padding: 8px 14px;
  }

  .topbar__text {
    font-size: 12px;
    text-align: center;
  }

  .topbar__cta {
    font-size: 12px;
  }
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 #EBEBEB;
  transition: box-shadow 0.3s;
  animation: fadeIn 0.5s 0.1s ease both;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.navbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo__image {
  height: 42px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}

.navbar__links a:hover {
  color: var(--orange);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.navbar__cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.cta-icon {
  width: 14px;
  height: 14px;
  fill: white;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  flex-shrink: 0;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Dropdown */
.navbar__nav {
  transition: max-height 0.35s var(--ease), opacity 0.35s ease;
}

/* --- Navbar Mobile --- */
@media (max-width: 1024px) {
  .navbar__links {
    gap: 16px;
  }

  .navbar__links a {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .navbar__inner {
    padding: 0 20px;
    height: 64px;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 199;
  }

  .navbar__nav.open {
    max-height: 400px;
    opacity: 1;
  }

  .navbar__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__links a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar__links a::after {
    display: none;
  }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  animation: scaleIn 1.2s ease both;
  transform-origin: center;
}

.hero__bg-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background: linear-gradient(to top, #ffffff 10%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 60px 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero__content {
  margin-top: -40px;
  max-width: 700px;
  animation: fadeInLeft 0.9s 0.3s ease both;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__reg-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.hero__reg-text {
  font-family: 'Figtree', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
}

.hero__open-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  font-size: 36px;
  font-weight: 600;
  color: white;
  line-height: 1;
  z-index: 1;
  animation: pulse-badge 2.5s ease-in-out 1.5s infinite;
}

.hero__open-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(assets/brush.svg) no-repeat center / contain;
  z-index: -1;
  pointer-events: none;
}

.hero__desc {
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  color: var(--text-light);
}

/* Hero Card */
.hero__card {
  width: 420px;
  flex-shrink: 0;
  border-radius: 16px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  color: white;
  animation: fadeInRight 0.9s 0.5s ease both;
}

.card__title {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 12px;
}

.card__sub {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 18px;
}

.card__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  position: relative;
}

.form-field__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #e97737;
}

.form-field--textarea .form-field__icon {
  top: 14px;
  transform: none;
  color: #e97737;
}

.form-field__icon svg {
  width: 16px;
  height: 16px;
  fill: #e97737;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 8px;
  padding: 12px 14px 12px 42px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
}

.form-field textarea {
  resize: none;
  min-height: 90px;
}

.card__submit {
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 14px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  width: 100%;
}

.card__submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.4);
}

.card__divider {
  display: flex;
  justify-content: center;
  margin: 12px 0;
}

.card__divider img {
  height: 20px;
  width: auto;
}

/* --- Hero Mobile --- */
@media (max-width: 1024px) {
  .hero__inner {
    padding: 40px 40px 120px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__card {
    width: 100%;
    max-width: 480px;
  }

  .hero__title {
    font-size: 54px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero__bg-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    z-index: 1;
    pointer-events: none;
  }

  .hero__inner {
    padding: 40px 20px 100px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .hero__content {
    margin-top: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__reg-line {
    justify-content: center;
  }

  .hero__reg-text,
  .hero__open-badge {
    font-size: 24px;
  }

  .hero__desc {
    font-size: 15px;
    text-align: center;
  }

  .hero__card {
    width: 100%;
  }

  .card__title,
  .card__sub {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 30px;
  }

  .hero__reg-text,
  .hero__open-badge {
    font-size: 20px;
  }
}

/* ══════════════════════════════════════════
   WHAT SETS US APART
══════════════════════════════════════════ */
.apart {
  background: #ffffff;
  padding: 20px 40px 60px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.apart__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.apart__heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 50px;
}

.apart__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.apart__item {
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.apart__item:hover {
  transform: translateY(-6px);
}

.apart__item:hover .apart__icon-wrap img {
  transform: scale(1.12) rotate(-4deg);
}

.apart__icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  overflow: visible;
}

.apart__icon-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.35s var(--ease);
}

.apart__item-desc {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
}

/* --- Apart Mobile --- */
@media (max-width: 1024px) {
  .apart {
    padding: 20px 20px 60px;
  }

  .apart__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .apart__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .apart__heading {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .apart__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ══════════════════════════════════════════
   KAILASH / FIRE HORSE YEAR SECTION
══════════════════════════════════════════ */
.k-section {
  width: 100%;
  background: #ffffff;
  padding: 10px 20px;
}

.k-box {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 40px 60px;
  background-image: url('assets/pattern.png');
  background-size: cover;
  background-position: center;
}

.k-header {
  text-align: center;
  margin-bottom: 60px;
}

.k-eyebrow {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: #1a2f46;
  font-weight: 600;
  margin-bottom: 12px;
}

.k-sep {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.k-sep img {
  width: 175px;
}

.k-sep2 {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.k-sep2 img {
  width: 175px;
}

.k-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  color: #1a2f46;
  margin-bottom: 16px;
  line-height: 1.3;
}

.k-sub {
  font-family: 'Figtree', sans-serif;
  color: #000000;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.k-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.k-card {
  border-radius: 14px;
  overflow: hidden;
  background: #2a1612;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.k-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.k-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.k-text h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  color: #000000;
  margin-bottom: 10px;
}

.k-text p {
  font-family: 'Figtree', sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 26px;
}

/* Marquee */
.k-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}

.k-track {
  display: flex;
  width: max-content;
  animation: marqueeWalk 50s linear infinite;
}

.k-seq {
  display: flex;
  align-items: center;
}

.k-seq span {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #e36b2c;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 20px;
}

.leaf-icon {
  width: 52px;
  margin: 0 10px;
}

@keyframes marqueeWalk {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.k-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.k-benefits h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  color: #000000;
  margin-bottom: 14px;
  font-weight: 700;
}

.k-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.k-benefits li {
  position: relative;
  padding-left: 32px;
  /* space for icon */
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.k-benefits li:hover {
  transform: translateX(4px);
}

.k-benefits li::before {

  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  /* slightly adjust for center alignment */
  width: 22px;
  height: 22px;
  background-image: url('assets/check.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.k-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
  animation: float 5s ease-in-out infinite;
}

.k-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  animation-play-state: paused;
}

/* --- Kailash Section Mobile --- */
@media (max-width: 1024px) {
  .k-box {
    padding: 50px 30px;
  }

  .k-top,
  .k-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .k-section {
    padding: 50px 16px;
  }

  .k-box {
    padding: 36px 20px;
    border-radius: 12px;
  }

  .k-header h2 {
    font-size: 26px;
  }

  .k-sub {
    font-size: 15px;
  }

  .k-seq span {
    font-size: 22px;
  }

  .leaf-icon {
    width: 36px;
  }

  .k-text h4,
  .k-benefits h4 {
    font-size: 18px;
  }

  .k-text p,
  .k-benefits li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .k-header h2 {
    font-size: 22px;
  }

  .k-seq span {
    font-size: 18px;
  }

  .k-sep img,
  .k-sep2 img {
    width: 120px;
  }
}

/* ══════════════════════════════════════════
   WHY TRAVELPOCKET
══════════════════════════════════════════ */
.tp-why {
  padding: 20px 20px;
}

.tp-header {
  text-align: center;
  margin-bottom: 50px;
}

.tp-eyebrow {
  font-size: 14px;
  color: #1a2f46;
  margin-bottom: 10px;
  font-weight: 600;
}

.tp-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #1a2f46;
  max-width: 1400px;
  margin: 0 auto;
  line-height: 1.3;
}

.tp-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.tp-left {
  width: 34%;
  position: sticky;
  top: 100px;
}

.tp-video-wrapper {
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.4s ease;
}

.tp-video-wrapper:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.tp-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-right {
  width: 66%;
}

.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tp-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.tp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/card-bg.png') center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.tp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.30);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.tp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  border-color: transparent;
}

.tp-card:hover::before,
.tp-card:hover::after {
  opacity: 1;
}

.tp-card>* {
  position: relative;
  z-index: 2;
}

.tp-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  transition: transform 0.35s var(--ease);
}

.tp-card:hover .tp-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}

.tp-icon-wrapper img {
  width: 56px;
  height: 56px;
}

.tp-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a2f46;
  margin-bottom: 10px;
  line-height: 1.4;
}

.tp-card p {
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
}

/* --- Why TP Mobile --- */
@media (max-width: 1024px) {
  .tp-container {
    flex-direction: column;
  }

  .tp-left,
  .tp-right {
    width: 100%;
  }

  .tp-left {
    position: relative;
    top: 0;
  }

  .tp-video-wrapper {
    height: 400px;
  }

  .tp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tp-why {
    padding: 20px 16px;
  }

  .tp-title {
    font-size: 26px;
  }

  .tp-video-wrapper {
    height: 600px;
  }

  .tp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .tp-card {
    padding: 22px 14px;
  }

  .tp-card h4 {
    font-size: 16px;
  }

  .tp-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════
   KMS PACKAGES SECTION
══════════════════════════════════════════ */
.kms-wrap {
  position: relative;
  width: 100%;
}

/* BG */
.kms-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
}

.kms-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.kms-sticky {
  position: relative;
  z-index: 2;
}

/* HEADER */
.kms-header {
  text-align: center;
  padding: 20px 20px 10px;
}

.kms-header__sub {
  font-size: 14px;
  font-weight: 600;
  color: #1a2f46;
  margin-bottom: 10px;
}

.kms-header__divider {
  display: flex;
  justify-content: center;
  margin: 12px 0;
}

.kms-header__divider img {
  display: block;
  margin: 0 auto;
}

.kms-header__title {
  font-size: 34px;
  font-family: 'Playfair Display', serif;
  color: #1a2f46;
}

/* BODY */
.kms-body {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  padding: 20px 20px 60px;
  align-items: flex-start;
}

/* LEFT TABS */
.kms-tabs {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 120px;
}

/* TAB */
.kms-tab {
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  border: none;
  color:black;
}

.kms-tab:hover {
  background: #29a4c1;
  color: #fff;
  transform: translateX(4px);
}

.kms-tab.active {
  background: #29a4c1;
  color: #fff;
}

/* RIGHT */
.kms-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* GROUP */
.kms-group {
  width: 100%;
}

/* CARD */
.kmc {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  margin: auto;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.kmc:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

/* HEADER */
.kmc__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 10px 20px;
}

.kmc__heli {
  width: 26px;
}

.kmc__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #1a1f36;
  font-family: 'Playfair Display', serif;
}

/* BODY */
.kmc__body {
  display: flex;
  gap: 10px;
  padding-top: 12px;
}

/* IMAGE */
.kmc__image {
  width: 320px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  padding: 15px;
}

.kmc__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s var(--ease);
}

.kmc:hover .kmc__image img {
  transform: scale(1.04);
}

/* BADGE */
.kmc__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e07b39;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-bottom-right-radius: 6px;
  z-index: 2;
}

/* CONTENT */
.kmc__content {
  flex: 1;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* LIST */
.kmc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kmc__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: transform 0.25s ease;
}

.kmc__list li:hover {
  transform: translateX(3px);
}

.kmc__list img {
  width: 18px;
  height: 18px;
  display: block;
  margin-top: 3px;
  flex-shrink: 0;
}

.kmc__list li>div {
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.desc {
  font-size: 14px;
  margin: 3px 0 0;
  color: #333;
  line-height: 1.5;
}

/* BOTTOM */
.kmc__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
  gap: 10px;
}

.kmc__discount {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  color: #2a9d8f;
}

.kmc__btn {
  background: #e07b39;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.6px;
  transition: background 0.2s, transform 0.2s;
}

.kmc__btn:hover {
  background: #c96528;
  transform: translateY(-2px);
}

/* --- KMS Mobile --- */
@media (max-width: 1024px) {
  .kms-header {
    padding: 60px 20px 20px;
  }

  .kms-header__title {
    font-size: 26px;
  }

  .kms-body {
    flex-direction: column;
    padding: 16px 16px 40px;
  }

  .kms-tabs {
    width: 100%;
    position: relative;
    top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .kms-tab {
    flex: 1 1 calc(50% - 8px);
    min-width: 150px;
    font-size: 14px;
    padding: 12px 12px;
  }
}

@media (max-width: 768px) {
  .kms-bg {
    height: 50vh;
  }

  .kms-tabs {
    flex-direction: column;
  }

  .kms-tab {
    flex: unset;
    width: 100%;
    font-size: 14px;
  }

  .kmc__body {
    flex-direction: column;
  }

  .kmc__image {
    width: 100%;
    height: 220px;
  }

  .kmc__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kmc__title {
    font-size: 18px;
  }

  .kmc__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .kmc__btn {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.tp-contact {
  padding: 60px 20px;
}

.tp-contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.tp-contact-bg {
  max-width: 1300px;
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-image: url('assets/Contact.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 40px;
  min-height: 500px;
}

.tp-contact-card {
  margin-top: 40px;
  width: 380px;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: fadeInRight 0.7s ease both;
}

.tp-contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 18px;
  text-align: center;
}

.tp-field {
  margin-bottom: 12px;
}

.tp-field input,
.tp-field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tp-field input:focus,
.tp-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.tp-field textarea {
  height: 100px;
  resize: none;
}

.tp-submit {
  width: 100%;
  background: #f97316;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-family: inherit;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}

.tp-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.tp-note {
  font-size: 12px;
  color: #000000;
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
}

/* Hide mobile image on desktop */
.tp-contact-image {
  display: none;
}

@media (max-width: 768px) {
  .tp-contact-image {
    display: block;
  }
}

/* --- Contact Mobile --- */
@media (max-width: 1024px) {
  .tp-contact-bg {
    justify-content: center;
    padding: 30px 20px;
    min-height: auto;
  }

  .tp-contact-card {
    width: 100%;
    max-width: 420px;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .tp-contact {
    padding: 40px 16px;
  }

  .tp-contact-bg {
    border-radius: 12px;
    padding: 0;
    background-image: none;
    background-color: transparent;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: auto;
    gap: 0;
  }

  .tp-contact-image {
    display: block;
    height: 300px;
    /* taller so top isn't cropped */
    object-position: top center;
    /* anchor to top */
    border-radius: 12px 12px 0 0;
  }

  .tp-contact-card {
    width: 100%;
    max-width: 100%;
    margin-top: -24px;
    /* pulls card up over image */
    border-radius: 16px 16px 0 0;
    /* rounded top so it overlaps nicely */
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12), 0 15px 40px rgba(0, 0, 0, 0.15);
    /* top + bottom shadow */
    position: relative;
    z-index: 2;
    /* sits above image */
  }

}

/* ══════════════════════════════════════════
   GIFTS SECTION
══════════════════════════════════════════ */
.tp-gifts {
  padding: 80px 20px;
}

.tp-gifts-header {
  text-align: center;
  margin-bottom: 50px;
}

.tp-gifts-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.tp-gift-card {
  position: relative;
  text-align: left;
  transition: transform 0.35s ease;
}

.tp-gift-card:hover {
  transform: translateY(-6px);
}

.tp-gift-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.35s ease;
}

.tp-gift-card:hover img {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.tp-gift-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #facc15;
  color: #000;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  animation: pulse-badge 2s ease-in-out infinite;
}

.tp-gift-card h4 {
  font-size: 16px;
  margin-top: 14px;
  color: #333333;
}

.tp-gift-card p {
  font-size: 14px;
  color: #333333;
  margin-top: 6px;
}

/* --- Gifts Mobile --- */
@media (max-width: 1024px) {
  .tp-gifts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .tp-gifts {
    padding: 50px 16px;
  }

  .tp-gifts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tp-gift-card img {
    height: auto;
    /* let image breathe naturally */
    aspect-ratio: 4/3;
    /* consistent ratio without cropping */
    object-fit: cover;
  }

  .tp-gifts-header .k-sep {
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .tp-gifts-grid {
    grid-template-columns: 1fr;
  }

  .tp-gift-card img {
    height: auto;
    /* wider ratio on single column */
  }

  .tp-gifts-header .k-sep {
    margin-top: 12px;
  }
}

/* ══════════════════════════════════════════
   HAPPY STORIES / TRAVELLERS SECTION
══════════════════════════════════════════ */
.stories {
  background: #e9dfd6;
  padding: 80px 60px;
  overflow: hidden;
}

.stories__container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* LEFT */
.stories__left {
  width: 30%;
  position: relative;
  z-index: 2;
}

.stories__confetti {
  position: absolute;
  top: 30px;
  left: 0px;
  width: 120px;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.stories__eyebrow {
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.stories__title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

/* RIGHT */
.stories__right {
  width: 70%;
  position: relative;
}

.stories__slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.stories__slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.story-card {
  min-width: 260px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.story-card video {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.play-btn::after {
  content: '';
  border-left: 14px solid #c27c3b;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* NAV */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) scale(1.1);
}

.nav.prev {
  left: -20px;
}

.nav.next {
  right: -20px;
}

/* --- Stories Mobile --- */
@media (max-width: 1024px) {
  .stories {
    padding: 60px 30px;
  }
}

/* --- Stories Mobile --- */
@media (max-width: 768px) {
  .stories {
    padding: 60px 20px;
  }

  .stories__container {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    text-align: center;
  }

  .stories__left,
  .stories__right {
    width: 100%;
  }

  .stories__title {
    font-size: 28px;
  }

  /* Snap scroll — one card at a time, centered */
  .stories__slider {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
  }

  .story-card {
    scroll-snap-align: center;
    min-width: 80vw;
    /* card takes most of screen, peek next */
    height: 400px;
    margin: 0 auto;
  }

  .nav.prev {
    left: -12px;
  }

  .nav.next {
    right: -12px;
  }
}

@media (max-width: 480px) {
  .story-card {
    min-width: 85vw;
    height: 360px;
  }

  .stories__title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {

  /* Center the divider */
  .stories__left .k-sep {
    display: flex;
    justify-content: center;
  }

  /* Center the confetti gif */
  .stories__confetti {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .stories__left .k-sep2 {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
}

/* ══════════════════════════════════════════
   WHATSAPP CTA
══════════════════════════════════════════ */
.wa-section {
  background: #ffffff;
  margin-top: 30px;
  padding: 0 20px;
}

.wa-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 0 40px;
  background-image: url('assets/stripbg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.wa-content {
  max-width: 380px;
}

.wa-eyebrow {
  font-size: 28px;
  color: #222;
  margin-bottom: 6px;
  font-weight: 400;
}

.wa-heading {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #222;
}

.wa-heading span {
  color: #25D366;
  font-weight: 800;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a2f46;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.wa-btn img {
  width: 18px;
  height: 18px;
}

.wa-btn:hover {
  background: #1f2a36;
  transform: translateY(-3px);
}

.wa-illustration img {
  height: 200px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}

/* --- WhatsApp CTA Mobile --- */
@media (max-width: 1024px) {
  .wa-container {
    gap: 20px;
    padding: 20px 30px;
  }

  .wa-heading {
    font-size: 28px;
  }

  .wa-eyebrow {
    font-size: 20px;
  }

  .wa-illustration img {
    height: 130px;
  }
}

@media (max-width: 768px) {
  .wa-section {
    margin-top: 60px;
    padding: 0 16px;
  }

  .wa-container {
    flex-direction: column;
    align-items: center;
    /* center everything */
    text-align: center;
    gap: 16px;
    padding: 28px 20px;
    border-radius: 12px;
  }

  .wa-heading {
    font-size: 26px;
  }

  .wa-eyebrow {
    font-size: 18px;
  }

  .wa-btn {
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .wa-illustration {
    display: block;
    /* was display:none — now visible */
  }

  .wa-illustration img {
    height: 140px;
  }
}

/* ══════════════════════════════════════════
   FOOTER HERO / CTA BANNER
══════════════════════════════════════════ */
.tp-footer-section {
  width: 100%;
  color: #1a2a3a;
}

.tp-hero {
  background: url('assets/footer.png') center / cover no-repeat;
  padding: 50px 20px 110px;
  text-align: center;
  position: relative;
}

.tp-hero__stroke {
  width: 300px;
  margin: 0 auto 15px;
  display: block;
  margin-top: -10px;
}

.tp-hero__title {
  font-family: 'White Oleander', cursive;
  font-size: 72px;
  color: #365c85;
  font-weight: 400;
  line-height: 1.1;
  display: inline-block;
  transform: rotate(-3.8deg);
  animation: fadeIn 1s 0.3s ease both;
}

.tp-hero__subtitle {
  font-size: 14px;
  color: #26415F;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 1.5px;
}

.tp-hero__desc {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 25px;
  color: #1a2f46;
  line-height: 1.6;
}

.tp-hero__cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tp-btn {
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tp-btn--primary,
.tp-btn--secondary {
  background: #f3702a;
  color: #fff;
}

/* --- Footer Hero Mobile --- */
@media (max-width: 768px) {
  .tp-hero {
    padding: 80px 20px 70px;
  }

  .tp-hero__title {
    font-size: 42px;
  }

  .tp-hero__stroke {
    width: 200px;
  }

  .tp-hero__desc {
    font-size: 15px;
  }

  .tp-btn {
    font-size: 15px;
    padding: 12px 18px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tp-hero__title {
    font-size: 32px;
  }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.tp-footer {
  background: #E9FBFF;
  padding: 70px 60px 25px;
}

.tp-footer__inner {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1.3fr 1fr 1.6fr;
  gap: 30px;
}

/* LOGO */
.tp-footer__logo {
  width: 240px;
  margin-bottom: 20px;
}

/* HEADINGS */
.tp-footer__heading {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #1C2E40;
}

/* COMPANY NAME */
.tp-company {
  font-size: 14px;
  font-weight: 600;
  color: #4D4D4D;
  margin-bottom: 10px;
}

/* INFO WITH ICON */
.tp-info {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.tp-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #4D4D4D;
  font-weight: 500;
}

.tp-icon {
  width: 16px;
  margin-top: 4px;
}

/* LABEL */
.tp-footer__label {
  font-size: 10px;
  color: #000000;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  font-weight: 500;
}

/* SOCIAL */
.tp-footer__social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.tp-footer__social a {
  width: 30px;
  height: 30px;
  border: 1px solid #1C2E40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C2E40;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.tp-footer__social a:hover {
  background: #1C2E40;
  color: #fff;
  transform: translateY(-3px);
}

/* ROW */
.tp-footer__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.tp-footer__row.tight {
  justify-content: flex-start;
}

.tp-footer__row span {
  font-size: 20px;
  font-weight: 300;
  color: #1C2E40;
}

.circle {
  width: 32px;
  height: 32px;
  border: 1px solid #1C2E40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.circle:hover {
  background: #1C2E40;
  color: #fff;
}

/* LINKS */
.tp-footer__links {
  list-style: none;
  padding: 0;
}

.tp-footer__links li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #1C2E40;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.tp-footer__links li:hover {
  color: var(--orange);
  transform: translateX(4px);
}

/* FOOTER FORM */
.tp-footer__form .tp-field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c9d6de;
  border-radius: 5px;
  background: #fff;
  padding: 8px 10px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.tp-footer__form .tp-field:focus-within {
  border-color: var(--orange);
}

.tp-footer__form .tp-field img {
  width: 24px;
  flex-shrink: 0;
}

.tp-footer__form .tp-field input,
.tp-footer__form .tp-field textarea {
  border: none;
  outline: none;
  width: 100%;
  font-size: 12px;
  background: transparent;
  font-family: inherit;
}

.tp-footer__form .tp-field.textarea textarea {
  height: 80px;
  resize: none;
}

/* BUTTON */
.tp-footer__form .tp-submit {
  width: 110px;
  background: #1C2E40;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 11px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.tp-footer__form .tp-submit:hover {
  background: #2a4560;
  transform: translateY(-2px);
}

/* DIVIDER */
.tp-footer__divider {
  height: 1px;
  background: #d6e3ea;
  margin: 45px auto 18px;
  max-width: 1200px;
}

/* COPYRIGHT */
.tp-footer__bottom {
  text-align: center;
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}

.mt-20 {
  margin-top: 18px;
}

/* --- Footer Mobile --- */
@media (max-width: 1024px) {
  .tp-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .tp-footer {
    padding: 50px 20px 20px;
  }

  .tp-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tp-footer__heading {
    font-size: 17px;
  }

  .tp-footer__form .tp-submit {
    width: 100%;
  }
}









/* --- TravelPocket Comparison Grid --- */
/* --- TravelPocket Comparison Grid --- */
/* Container and Section */
/* --- Global Section --- */


/* SECTION WRAPPER */
.tpc-section {
  padding: 50px 20px;
  /* Background Image Settings */
  background-image: url('assets/table.png');
  /* Replace with your image path */
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.tpc-container {
  max-width: 1240px;
  margin: auto;
}

.tpc-header {
  text-align: center;
  margin-bottom: 70px;
}

.tpc-title {
  font-size:35px;
  font-weight: 600;
  color: #1a2b3c;
  font-family: 'Playfair Display', serif;
}

/* THE GRID TABLE STRUCTURE */
.tpc-pixel-grid {
  display: grid;
  /* Column ratio: Feature - TravelPocket - Others */
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: stretch;
}

/* --- HEADERS --- */

.tpc-head {
  padding: 35px 25px;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
}

/* Feature Header */
.tpc-feat-head {
  background-color: #FFFFFF;
  /* White background */
  border-top-left-radius: 12px;
  gap: 12px;
  color: #1a2b3c;
}

/* Feature Header Icon (28px) */
.header-icon {
  width: 48px;
  height: 48px;
}

/* Other Companies Header */
.tpc-other-head {
  background-color: #FFFFFF;
  /* White background */
  justify-content: center;
  border-top-right-radius: 12px;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
}

/* TravelPocket Header (Floating Column) */
.tpc-best-head {
  background: #FFF0E8;
  /* Logo background per request */
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-top: -30px;
  /* Floating lift */
  padding-top: 60px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.06), -15px 0 40px rgba(0, 0, 0, 0.02), 15px 0 40px rgba(0, 0, 0, 0.02);
}

/* Best Value Badge */
.tpc-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #E97737;
  /* Best value color */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  border-radius: 12px 12px 0 0;
  text-transform: capitalize;
}

.tp-logo {
  max-height: 48px;
  width: auto;
}

/* --- DATA CELLS --- */

.tpc-cell {
  padding: 20px 25px 10px 25px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid #f0f0f0;
}

/* Feature Column Cells */
.tpc-feat-bg {
  background-color: #DAEAFF;
  /* Light blue */
}

/* Feature Column Icons (24px) */
.feat-icon {
  width: 44px;
  height: 44px;
}

/* Other Companies Column Cells */
.tpc-other-bg {
  background-color: #F8F8F8;
  /* Light gray */
  border-right: 1px solid #eee;
}

/* TravelPocket Main Column Cells */
.tpc-best-cell {
  background-color: #FFFFFF;
  /* White */
  z-index: 9;
  position: relative;
  box-shadow: 20px 0 40px rgba(0, 0, 0, 0.03), -20px 0 40px rgba(0, 0, 0, 0.03);
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
}

/* Status Icons (Right/Wrong) (22px) */
.status-icon {
  width: 22px !important;
  height: 22px !important;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- BOTTOM STYLING --- */

.tpc-bottom-left {
  border-bottom-left-radius: 12px;
}

.tpc-bottom-right {
  border-bottom-right-radius: 12px;
}

.tpc-bottom-best {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-bottom: -30px;
  /* Floating drop */
  padding-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06), 20px 0 40px rgba(0, 0, 0, 0.03), -20px 0 40px rgba(0, 0, 0, 0.03);
}

/* --- TYPOGRAPHY --- */

.tpc-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tpc-content h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
}

.tpc-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}

/* --- MOBILE RESPONSIVITY --- */

/* --- MOBILE RESPONSIVITY --- */

@media (max-width: 991px) {
  .tpc-section {
    padding: 60px 0px;
  }

  .tpc-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 20px;
  }

  .tpc-pixel-grid {
    /* Keep original 3-column layout, just set a min-width so it scrolls */
    grid-template-columns: 180px 1.35fr 1fr;
    min-width: 680px;
  }

  /* Reset any mobile overrides that break the layout */
  .tpc-best-head {
    margin-top: -30px;
    border-radius: 12px 12px 0 0;
  }

  .tpc-bottom-best {
    margin-bottom: -30px;
    border-radius: 12px;
  }


}


@media (max-width: 991px) {
  .tpc-section {
    padding: 60px 0px;
    background-size: auto 320px;
    /* taller bg image on mobile */
  }

  .tpc-title {
    font-size: 26px;
  }
}