/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --blue:       #0878c9;
  --blue-dark:  #005a9e;
  --white:      #ffffff;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #111;
  background-color: var(--white);
  overflow-x: hidden;
}

/* =================================
   TOURIST ANIMATION SECTION
================================= */

.tourist-animation {
    position: relative;

    width: 100%;
    height: 250px;

    overflow: hidden;

    background: linear-gradient(
        180deg,
        #ffffff,
        #eef8ff
    );
}


/* =================================
   TOURIST
================================= */
.tourist-wrapper {
    position: absolute;
    bottom: 0px;
    right: -220px;
    width: 180px;

    animation: touristMove 12s linear infinite;
}

@keyframes touristMove {
    0% {
        right: -220px;
    }

    100% {
        right: calc(100% + 220px);
    }
}


/* =================================
   IMAGE
================================= */

.tourist-character {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 12px 8px rgba(0, 0, 0, 0.15));
}


/* =================================
   MOVE LEFT → RIGHT
================================= */

@keyframes touristMove {

    0% {
        left: 220px;
    }

    100% {
        left: calc(100% + 220px);
    }

}


/* =================================
   WALKING / BODY BOUNCE
================================= */

@keyframes touristWalk {

    0% {
        transform:
            translateY(0)
            rotate(-1deg);
    }

    100% {
        transform:
            translateY(-7px)
            rotate(1deg);
    }

}

/* ── Navbar ─── */
/* ==============================
   NAVBAR
================================ */

.nav-container {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 1000;

    width: calc(100% - 100px);
    height: 60px;

    margin: 0;

    padding: 8px 12px 8px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.92);

    border: 2px solid rgba(0, 90, 158, 0.12);
    border-radius: 24px;

    box-shadow:
        0 15px 35px rgba(84, 95, 111, 0.1),
        0 3px 10px rgba(13, 27, 46, 0.05);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* ==============================
   LOGO
================================ */

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.10);
}


/* ==============================
   NAV ITEMS
================================ */

.nav-items {
    display: flex;
    align-items: center;
    gap: 60px;

    list-style: none;
    margin: 0;
    padding: 6px;

   

}

.nav-items a:hover ,a.active {
    color: var(--blue-dark);

    background: linear-gradient(
        135deg,
        rgba(0, 90, 158, 0.16),
        rgba(0, 126, 204, 0.08)
    );

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(0, 90, 158, 0.15),
        0 0 15px rgba(0, 126, 204, 0.10);
}

.nav-items a.active {
    color: var(--white);

    background: linear-gradient(
        135deg,
        #005a9e,
        #087dcc
    );

    box-shadow:
        0 6px 18px rgba(0, 90, 158, 0.30),
        0 0 18px rgba(0, 126, 204, 0.15);
}

/* Individual link */

.nav-items a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 85px;

    padding: 12px 16px;

    border-radius: 13px;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 500;

    color: #0d1b2e;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}



/* ==============================
   PLAN YOUR TRIP BUTTON
================================ */

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 12px 23px;

  text-decoration: none;

  color: var(--white);

  background: var(--blue);

  font-size: 0.85rem;
  font-weight: 600;

  letter-spacing: 0.04em;

  border-radius: 30px;

  white-space: nowrap;

  box-shadow:
    0 6px 15px rgba(0, 90, 158, 0.22);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* Plane icon */

.contact-btn span {
  font-size: 16px;
  transition: transform 0.3s ease;
}


/* Button hover */

.contact-btn:hover {
  background: var(--blue-dark);

  transform: translateY(-3px);

  box-shadow:
    0 10px 22px rgba(0, 90, 158, 0.28);
}


/* Plane animation */

.contact-btn:hover span {
  transform: translateX(4px) rotate(-8deg);
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height:100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* GIF background */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/waterfall.gif');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Lighter natural overlay — warm dark, not blue */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 15, 30, 0.72) 0%,
    rgba(5, 15, 30, 0.45) 55%,
    rgba(5, 15, 30, 0.10) 100%
  );
  z-index: 1;
}

/* Content row */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  gap: 48px;
  width: 100%;
}

/* Centred variant — no carousel */
.hero__content--center {
  justify-content: center;
  text-align: center;
}

.hero__content--center .hero__text {
  flex: 0 0 auto;
  max-width: 680px;
  align-items: center;
}

.hero__content--center .hero__tag {
  margin-left: auto;
  margin-right: auto;
}

.hero__content--center .hero__btns {
  justify-content: center;
}

.hero__content--center .hero__stats {
  justify-content: center;
}

.hero__content--center .hero__text p {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero Text ── */
.hero__text {
  flex: 0 0 44%;
  max-width: 500px;
  color: var(--white);
}

.hero__tag i { color: var(--blue); }

.hero__text h1 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
  color: var(--white);
}

.hero__text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 400px;
}

.hero__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Primary button */
.btn-teal {
  display: inline-block;
  text-decoration: none;
  background-color: var(--blue);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.btn-teal:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* Ghost outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: background 0.25s, border-color 0.25s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-outline i {
  width: 24px;
  height: 24px;
  background: var(--white);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* Hero stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.25);
}

/* ── Video Card Carousel (right side) ── */
.hero__carousel {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 10px 0;     /* vertical room so card hover-lift isn't clipped */
}

.hero__vc-track {
  display: flex;
  gap: 0;              /* gap handled via card margin in JS */
  /* Permanent smooth transition — JS never touches this except on snap */
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual video card — width set by JS to fill 3 per viewport */
.hero__vc {
  flex-shrink: 0;
  /* width + margin set dynamically */
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero__vc:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 64px rgba(0,0,0,0.45);
}

.hero__vc img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero__vc:hover img { transform: scale(1.06); }

/* Gradient overlay inside card */
.hero__vc-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.hero__vc-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.hero__vc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

/* Play button — centre of card */
.hero__vc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: background 0.25s, transform 0.25s;
}

.hero__vc:hover .hero__vc-play {
  background: var(--blue);
  border-color: var(--blue);
  transform: translate(-50%, -60%) scale(1.1);
}

/* Prev / Next buttons */
.hero__vc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.25s, transform 0.2s;
}

.hero__vc-btn:hover {
  background: var(--blue);
  transform: translateY(-50%) scale(1.1);
}

.hero__vc-btn--prev { left: 8px; }
.hero__vc-btn--next { right: 8px; }

/* ── Discover / "Your Story Begins" Section ───────────────── */
.discover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 90px 80px;
  background-color: var(--white);
}

/* Left column */
.discover__left {
  flex: 0 0 45%;
  max-width: 480px;
}

.discover__tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.discover__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: #111;
  margin-bottom: 18px;
}

.discover__heading .teal {
  color: var(--blue);
}

.discover__body {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* Stats row */
.discover__stats {
  display: flex;
  gap: 40px;
}

.stat h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.stat p {
  font-size: 0.82rem;
  color: #888;
  font-weight: 500;
}

/* Right column */
.discover__right {
  flex: 0 0 40%;
}

.discover__img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.discover__img-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Watch Video button overlaid on image 
.watch-btn {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.watch-btn i {
  width: 28px;
  height: 28px;
  background-color: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.watch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ── Travel / Destinations Carousel Section ──────────────── */
.travel {
  background-color: #eef4fb;
  padding: 80px 0 90px;
  overflow: hidden;
}

/* Header */
.travel__top {
  text-align: center;
  padding: 0 80px;
  margin-bottom: 56px;
}

.travel__tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.travel__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.1;
  margin-bottom: 14px;
}

.travel__desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Carousel Root ── */
.tc-root {
  position: relative;
  display: flex;
  align-items: center;
}

/* Prev / Next buttons */
.tc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background-color: var(--white);
  color: var(--blue);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: background-color 0.25s, color 0.25s, transform 0.15s;
  flex-shrink: 0;
}

.tc-btn--prev { left: 16px; }
.tc-btn--next { right: 16px; }

.tc-btn:hover {
  background-color: var(--blue);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

/* Viewport — fixed width, clips overflow */
.tc-viewport {
  width: 100%;
  overflow: hidden;
  /* vertical padding so scaled-up centre card isn't clipped */
  padding: 48px 0;
}

/* Track — holds all cards in a row */
.tc-track {
  display: flex;
  align-items: center;
  gap: 0;
  /* Single permanent transition — always the same, no JS toggling */
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Individual Card ── */
.tc-card {
  flex-shrink: 0;
  /* width is set dynamically by JS to fill exactly 5 cards across the viewport */
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(8, 120, 201, 0.10);
  transform: scale(0.82);
  opacity: 0.60;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity   0.8s ease,
              box-shadow 0.8s ease;
  cursor: pointer;
}

/* Immediate neighbours (±1) */
.tc-card--near {
  transform: scale(0.91);
  opacity: 0.80;
  box-shadow: 0 10px 32px rgba(8, 120, 201, 0.14);
}

/* Active / centre card */
.tc-card--active {
  transform: scale(1.08);
  opacity: 1;
  box-shadow: 0 24px 60px rgba(8, 120, 201, 0.30);
  z-index: 2;
}

/* Image */
.tc-card__img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.tc-card__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tc-card--active .tc-card__img-wrap img {
  transform: scale(1.05);
}

/* Star badge */
.tc-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
  color: #ffd700;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Body */
.tc-card__body {
  padding: 16px 16px 14px;
}

.tc-card__location {
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tc-card__title {
  font-size: 0.93rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 7px;
}

.tc-card__desc {
  font-size: 0.75rem;
  color: #777;
  line-height: 1.55;
  margin-bottom: 13px;
}

/* Footer row */
.tc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tc-card__price {
  font-size: 0.75rem;
  color: #888;
}

.tc-card__price strong {
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.tc-card__link {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 3px;
}

.tc-card__link::after {
  content: '→';
  transition: transform 0.2s;
}

.tc-card__link:hover { color: var(--blue-dark); }
.tc-card__link:hover::after { transform: translateX(4px); }

/* ── Dots ── */
.tc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(8, 120, 201, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}

.tc-dot--active {
  background: var(--blue);
  width: 26px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   We Offer Best Services Section
   ══════════════════════════════════════════════════════════ */
.services {
  background-color: var(--white);
  padding: 80px 80px 90px;
}

.services__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0d1b2e;
  margin-bottom: 60px;
}

/* ── 4-column grid ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Individual card ── */
.services__card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px 32px;
  text-align: center;
  border: 1px solid #edf0f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(8, 120, 201, 0.12);
  border-color: transparent;
}

/* Active/highlighted card */
.services__card--active {
  box-shadow: 0 16px 48px rgba(8, 120, 201, 0.14);
  border-color: transparent;
}

/* ── Icon circle ── */
.services__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  position: relative;
}

/* Soft blob behind icon */
.services__icon-wrap::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.25;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -30%);
  z-index: 0;
}

.services__icon-wrap i {
  position: relative;
  z-index: 1;
}

/* Blue variant */
.services__icon-wrap--blue {
  background: rgba(8, 120, 201, 0.08);
  color: var(--blue);
}

.services__icon-wrap--blue::before {
  background: var(--blue);
}

/* Pink/rose variant */
.services__icon-wrap--pink {
  background: rgba(240, 100, 130, 0.08);
  color: #e05c8a;
}

.services__icon-wrap--pink::before {
  background: #e05c8a;
}

/* ── Card text ── */
.services__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 12px;
}

.services__desc {
  font-size: 0.84rem;
  color: #777;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   3 Easy Steps Section
   ══════════════════════════════════════════════════════════ */
.steps {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 90px 80px 80px;
  background: linear-gradient(135deg, #eaf4ff 0%, #f5f9ff 60%, #e8f2ff 100%);
  overflow: hidden;
  position: relative;
}

/* ── Left column ── */
.steps__left {
  flex: 0 0 42%;
  max-width: 460px;
}

.steps__tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.steps__tag-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.steps__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.2;
  margin-bottom: 18px;
}

.steps__heading span {
  color: var(--blue);
}

.steps__body {
  font-size: 0.9rem;
  color: #556;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 400px;
}

/* ── Step list ── */
.steps__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.steps__list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.steps__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid rgba(8, 120, 201, 0.3);
  background: rgba(8, 120, 201, 0.06);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.steps__list li div strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 2px;
}

.steps__list li div p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a2e;
  margin: 0;
}

/* ── CTA button ── */
.steps__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.steps__cta:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateX(4px);
}

/* ── Right visual area ── */
.steps__right {
  flex: 1;
  position: relative;
  height: 520px;
  min-width: 0;
}

/* Large circle photo */
.steps__circle-img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(8, 120, 201, 0.20);
  z-index: 1;
}

.steps__circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dashed ring around circle */
.steps__ring {
  position: absolute;
  top: -18px;
  left: -18px;
  right: -18px;
  bottom: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(8, 120, 201, 0.35);
  pointer-events: none;
}

/* "Real Trips" floating badge */
.steps__badge-top {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 8px 28px rgba(8, 120, 201, 0.18);
  z-index: 10;
  pointer-events: none;
}

.steps__badge-top i {
  color: var(--blue);
  margin-top: 4px;
}

/* Plane icon floating bottom of circle */
.steps__plane-icon {
  position: absolute;
  bottom: -20px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(8, 120, 201, 0.18);
  z-index: 10;
  pointer-events: none;
}

/* ── Polaroid cards — overlap the circle from the right ── */
.steps__polaroid {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 8px 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  width: 175px;
}

.steps__polaroid img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.steps__polaroid p {
  margin: 8px 0 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
}

.steps__polaroid p i {
  color: var(--blue);
  margin-left: 3px;
}

/* Top polaroid — overlaps circle upper-right, tilted */
.steps__polaroid--top {
  top: 30px;
  right: 0;
  z-index: 3;
  transform: rotate(3deg);
}

/* Bottom polaroid — overlaps circle lower-right, sits on top of top one */
.steps__polaroid--bottom {
  top: 220px;
  right: 20px;
  z-index: 4;
  transform: rotate(-2deg);
}

/* Hover lift */
.steps__polaroid--top:hover   { transform: rotate(3deg) translateY(-10px);  transition: transform 0.35s ease; }
.steps__polaroid--bottom:hover { transform: rotate(-2deg) translateY(-10px); transition: transform 0.35s ease; }

/* ── Bottom tagline ── */
.steps__tagline {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
  white-space: nowrap;
}

.steps__tagline span {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════
   Shared gradient wrap — Testimonials + News + Contact
   ══════════════════════════════════════════════════════════ */
.gradient-wrap {
  background: linear-gradient(
    175deg,
    #dceeff 0%,
    #eaf4ff 22%,
    #f5f9ff 45%,
    #e8f2ff 68%,
    #d6eaff 100%
  );
}

/* Remove individual backgrounds so gradient shows through */
.gradient-wrap .testi,
.gradient-wrap .news,
.gradient-wrap .contact {
  background: transparent;
}

/* Keep the white card inside contact */
.gradient-wrap .contact__card {
  background: var(--white);
}

/* ══════════════════════════════════════════════════════════
   Testimonials & Reviews Section
   ══════════════════════════════════════════════════════════ */
.testi {
  position: relative;
  padding: 90px 80px 80px;
  overflow: hidden;
}

/* ── Decorative cloud blobs ── */
.testi__bg { pointer-events: none; }

.testi__cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.testi__cloud--tl {
  width: 420px; height: 320px;
  background: radial-gradient(circle, #b8d9f8, transparent 70%);
  top: -80px; left: -100px;
}

.testi__cloud--tr {
  width: 380px; height: 280px;
  background: radial-gradient(circle, #c5e3ff, transparent 70%);
  top: -60px; right: -80px;
}

.testi__cloud--bl {
  width: 300px; height: 220px;
  background: radial-gradient(circle, #cce8ff, transparent 70%);
  bottom: 40px; left: 20%;
}

/* ── Inner container ── */
.testi__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.testi__header {
  text-align: center;
  margin-bottom: 56px;
}

.testi__tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-style: italic;
}

.testi__tag i { font-size: 0.75rem; opacity: 0.75; }

.testi__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.2;
  margin-bottom: 14px;
}

.testi__title span {
  color: var(--blue-dark);
}

.testi__sub {
  font-size: 0.88rem;
  color: #5a7a9a;
  line-height: 1.75;
}

/* ── Cards row ── */
.testi__cards {
  display: flex;
  align-items: flex-end;        /* bottom-align so cards sit on same baseline */
  gap: 28px;
  margin-bottom: 52px;
}

/* ── Floating keyframes ── */
@keyframes floatUp {
  0%, 100% { transform: translateY(0px) rotate(-2.5deg); }
  50%       { transform: translateY(-14px) rotate(-2.5deg); }
}
@keyframes floatCenter {
  0%, 100% { transform: translateY(-28px) rotate(0deg); }
  50%       { transform: translateY(-44px) rotate(0deg); }
}
@keyframes floatDown {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50%       { transform: translateY(-14px) rotate(2deg); }
}

/* ── Individual card base ── */
.testi__card {
  flex: 1;
  border-radius: 28px;
  padding: 28px 26px 36px;
  position: relative;
  cursor: default;
}

/* Side cards — slightly smaller via scale */
.testi__card--left {
  background: #e8e4f8;          /* lavender */
  transform: rotate(-2.5deg) translateY(0px);
  animation: floatUp 4.5s ease-in-out infinite;
  animation-delay: 0s;
  box-shadow: 0 16px 48px rgba(120, 80, 200, 0.13);
}

.testi__card--center {
  background: #ffffff;
  transform: translateY(-28px);
  animation: floatCenter 4s ease-in-out infinite;
  animation-delay: 0.4s;
  box-shadow: 0 28px 64px rgba(8, 120, 201, 0.18);
  z-index: 2;
  /* Center card is visually larger */
  flex: 1.25;
}

.testi__card--right {
  background: #f5f0e0;          /* warm cream */
  transform: rotate(2deg) translateY(0px);
  animation: floatDown 5s ease-in-out infinite;
  animation-delay: 0.8s;
  box-shadow: 0 16px 48px rgba(180, 140, 60, 0.13);
}

/* ── Avatar + name row ── */
.testi__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testi__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.8);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.testi__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.testi__trip {
  display: block;
  font-size: 0.72rem;
  color: #888;
  font-weight: 400;
}

/* Stars */
.testi__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f5a623;
  font-size: 0.8rem;
}

/* Review text */
.testi__text {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Left card text color slightly muted */
.testi__card--left .testi__text  { color: #444; }
.testi__card--right .testi__text { color: #4a4030; }

/* Big closing quote bottom-right */
.testi__bigquote {
  position: absolute;
  bottom: 14px;
  right: 22px;
  font-size: 3.8rem;
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.12);
  user-select: none;
}

.testi__card--left  .testi__bigquote { color: rgba(100, 60, 200, 0.18); }
.testi__card--center .testi__bigquote { color: rgba(8, 120, 201, 0.14); }
.testi__card--right .testi__bigquote { color: rgba(160, 120, 40, 0.18); }

/* ── Rating bar ── */
.testi__rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--white);
  border-radius: 50px;
  padding: 14px 36px;
  box-shadow: 0 6px 24px rgba(8, 120, 201, 0.10);
  width: fit-content;
  margin: 0 auto;
}

.testi__rating-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testi__rating-star {
  font-size: 1.4rem;
  color: var(--blue);
}

.testi__rating-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1;
}

.testi__rating-denom {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
}

/* Divider between score and stars */
.testi__rating-bar::before {
  display: none;
}

.testi__rating-stars {
  display: flex;
  gap: 4px;
  color: #f5a623;
  font-size: 1.3rem;
}

.testi__rating-label {
  font-size: 0.82rem;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
  padding-left: 4px;
  border-left: 1px solid #dde;
  padding-left: 16px;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   Travel News Section
   ══════════════════════════════════════════════════════════ */
.news {
  padding: 80px 80px 90px;
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.news__tag {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
}

.news__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0d1b2e;
  margin: 0;
}

.news__heading span { color: var(--blue); }

.news__view-all {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: 50px;
  padding: 8px 20px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.news__view-all:hover { background: var(--blue); color: var(--white); }

/* ── Cards grid ── */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news__card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(8, 120, 201, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(8, 120, 201, 0.15);
}

.news__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news__card:hover .news__img-wrap img { transform: scale(1.06); }

.news__label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}

.news__body { padding: 22px 20px 24px; }

.news__date {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b2e;
  line-height: 1.4;
  margin-bottom: 10px;
}

.news__excerpt {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.65;
  margin-bottom: 16px;
}

.news__read {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.news__read:hover { color: var(--blue-dark); }

/* ══════════════════════════════════════════════════════════
   Footer
   ══════════════════════════════════════════════════════════ */
.footer {
  background: #0a1628;
  color: rgba(255,255,255,0.75);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr 1.6fr;
  gap: 48px;
  padding: 64px 80px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.footer__logo {
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 14px;
}

.footer__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  max-width: 240px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer__socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Link columns */
.footer__col-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  text-decoration: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

/* Contact column */
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.footer__contact i {
  color: var(--blue);
  width: 14px;
  text-align: center;
}

/* Newsletter column */
.footer__newsletter-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer__subscribe {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.footer__subscribe input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.78rem;
  outline: none;
  font-family: inherit;
}

.footer__subscribe input::placeholder { color: rgba(255,255,255,0.35); }

.footer__subscribe button {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer__subscribe button:hover { background: var(--blue-dark); }

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════
   Contact Section
   ══════════════════════════════════════════════════════════ */
.contact {
  padding: 80px 80px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.contact__card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 16px 60px rgba(8, 120, 201, 0.10);
  display: flex;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
}

/* ── Left info panel ── */
.contact__left {
  flex: 0 0 38%;
  padding: 48px 40px;
  background: var(--white);
  border-right: 1px solid #f0f4f8;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #0d1b2e;
  font-family: Georgia, serif;
  line-height: 1.2;
  margin-bottom: 4px;
}

.contact__sub {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.contact__sub span {
  color: var(--blue);
  font-weight: 600;
}

/* Info items */
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(8, 120, 201, 0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 5px;
}

.contact__info-item p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.contact__note {
  font-size: 0.78rem !important;
  color: var(--blue) !important;
  margin-top: 6px !important;
}

.contact__info-item a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.contact__info-item a:hover { text-decoration: underline; }

/* ── Right form panel ── */
.contact__right {
  flex: 1;
  padding: 48px 44px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Two-column row */
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Field wrapper */
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__field--full {
  grid-column: 1 / -1;
}

.contact__field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.02em;
}

/* Inputs, selects, textarea */
.contact__field input,
.contact__field select,
.contact__field textarea {
  background: #f4f6f9;
  border: 1.5px solid #e8ecf2;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.85rem;
  color: #333;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: #b0b8c8;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 120, 201, 0.10);
  background: var(--white);
}

.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact__field textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit button */
.contact__submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
  margin-top: 4px;
}

.contact__submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
