.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__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__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);
}

/* 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);
}

/*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;
}

/*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);
}

.tc-viewport {
  width: 100%;
  overflow: hidden;
  padding: 48px 0;
}

.tc-track {
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.tc-card {
  flex-shrink: 0;
  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;
  will-change: transform, opacity; /* Enable hardware acceleration */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              opacity   0.4s ease,
              box-shadow 0.4s 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); }
.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;
}
.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;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.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;
}


.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;
}

.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;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(8, 120, 201, 0.20);
  z-index: 1;
}
.steps__circle-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center; 
}



/* 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;
}

.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;
}

.testi__cards {
  display: flex;
  align-items: flex-end;        
  gap: 28px;
  margin-bottom: 52px;
}

@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); }
}


.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;      
  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;
  flex: 1.25;
}

.testi__card--right {
  background: #f5f0e0;  
  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); }

/* ==============================
   RESPONSIVE DESIGN (MOBILE)
================================ */
@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .gradient-wrap {
    overflow-x: hidden !important;
  }

  /* Hero Section
  .hero {
    height: auto !important;
    min-height: 100vh !important;
    padding-top: 100px !important;
    padding-bottom: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .hero__content {
    padding: 0 20px !important;
    width: 100% !important;
  }
  .hero__text {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

  .hero__text h1 {
    font-size: clamp(1.8rem, 5vw, 2.2rem) !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .hero__text p {
    font-size: 1rem !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero__btns {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
  }

  .hero__stats {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 20px !important;
    border-radius: 16px !important;
    margin-top: 30px !important;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(0, 90, 158, 0.08) !important;
  }

  .hero__stat-divider {
    display: none !important;
  }

  .hero__stat {
    text-align: center !important;
  }

  .hero__stat strong {
    color: #0d1b2e !important;
  }

  .hero__stat span {
    color: #555 !important;
  } */
     /* Hero Section */
  .hero {
    height: auto !important;
    min-height: 100vh !important;
    padding-top: 120px !important; /* Clear fixed nav */
    padding-bottom: 60px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .hero__content {
    padding: 0 24px !important;
    width: 100% !important;
  }

  .hero__text {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero__text h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .hero__text p {
    font-size: 1rem !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero__btns {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 30px !important;
  }

  .hero__stats {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important; 
    justify-content: center !important;
    align-items: center !important;
    gap: 15px 30px !important; 
    background: transparent !important;
    padding: 0 !important; 
    box-shadow: none !important;
    margin-top: 30px !important;
    width: 100% !important;
  }

  .hero__stat-divider {
    display: none !important;
  }

  .hero__stat {
    text-align: center !important;
    flex: 1 1 120px !important; 
    max-width: 150px !important;
  }

  .hero__stat strong {
    color: var(--white) !important; 
    font-size: 1.5rem !important;
  }

  .hero__stat span {
    color: rgba(255, 255, 255, 0.8) !important; 
    font-size: 0.8rem !important;
  }
 

  /* Discover Section */
  .discover {
    display: flex !important;
    flex-direction: column !important;
    padding: 40px 20px !important;
    gap: 30px !important;
  }

  .discover__left,
  .discover__right {
    width: 100% !important;
    padding: 0 !important;
    flex: none !important;
  }

  .discover__heading {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .discover__body {
    text-align: center !important;
    max-width: 100% !important;
  }

  .discover__stats {
    justify-content: space-around !important;
    margin-top: 25px !important;
  }

  .discover__img-wrap {
    height: auto !important;
    max-height: 350px !important;
    width: 100% !important;
    margin: 20px auto 0 !important;
  }
  .discover__img-wrap img {
  height: 300px !important;
  object-fit: cover !important;
}


  /* Destinations Carousel Section */
  .travel {
    padding: 45px 20px !important;
  }

  .travel__top {
    padding: 0 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  .travel__title {
    font-size: 1.8rem !important;
  }

  .travel__desc {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }

  .tc-root {
    padding: 0 !important;
  }

  /* Hide default side buttons on mobile to prevent overflow */
  .tc-btn {
    display: none !important;
  }

  .tc-viewport {
    overflow: hidden !important;
  }

  /* Steps Section */
  .steps {
    display: flex !important;
    flex-direction: column !important;
    padding: 40px 20px !important;
    gap: 40px !important;
  }

  .steps__left,
  .steps__right {
    width: 100% !important;
    padding: 0 !important;
    flex: none !important;
  }

  .steps__heading {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .steps__body {
    text-align: center !important;
  }

  .steps__list {
    margin-top: 24px !important;
  }

  .steps__list li {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .steps__icon-box {
    margin-bottom: 4px !important;
  }

  .steps__cta {
    display: flex !important;
    justify-content: center !important;
    width: fit-content !important;
    margin: 30px auto 0 !important;
  }

  .steps__right {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    height: 380px !important;
    margin: 40px auto 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }

   .steps__circle-img {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 260px !important;
    height: 260px !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }


  .steps__circle-img img {
    border-radius: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .steps__ring {
    position: absolute !important;
    top: -12px !important;
    left: -12px !important;
    right: -12px !important;
    bottom: -12px !important;
    border-radius: 50% !important;
    border: 2px dashed rgba(8, 120, 201, 0.35) !important;
  }

  .steps__badge-top {
    position: absolute !important;
    top: -50px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--white) !important;
    box-shadow: 0 8px 28px rgba(8, 120, 201, 0.18) !important;
    border-radius: 50% !important;
    width: 96px !important;
    height: 96px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.65rem !important;
    z-index: 10 !important;
  }

  .steps__plane-icon {
    position: absolute !important;
    bottom: -15px !important;
    right: 15px !important;
    z-index: 10 !important;
  }

  .steps__polaroid {
    display: none !important; /* Hide complex polaroid overlaps on mobile */
  }

  .steps__tagline {
    display: none !important;
  }

  /* Services Section */
  .services {
    padding: 45px 20px !important;
  }

  .services__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .services__heading {
    font-size: 1.8rem !important;
    margin-bottom: 30px !important;
    text-align: center !important;
  }

  .services__tag {
    text-align: center !important;
  }

  /* Testimonials Section */
  .testi {
    padding: 45px 20px !important;
  }

  .testi__title {
    font-size: 1.8rem !important;
    text-align: center !important;
  }

  .testi__sub {
    font-size: 0.85rem !important;
    text-align: center !important;
  }

  .testi__cards {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 24px !important;
    margin-bottom: 35px !important;
  }

  .testi__card {
    flex: none !important;
    margin: 0 !important;
    padding: 24px 20px 30px !important;
  }

  .testi__card--left,
  .testi__card--center,
  .testi__card--right {
    transform: none !important;
    animation: none !important;
    flex: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  }

  .testi__rating-bar {
    flex-direction: column !important;
    border-radius: 20px !important;
    padding: 16px 24px !important;
    gap: 12px !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .testi__rating-label {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid #dde !important;
    padding-top: 10px !important;
    width: 100% !important;
  }

  /* News/Blog Section */
  .news {
    padding: 40px 20px !important;
  }
  .news__header {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 16px !important;
  margin-bottom: 30px !important;
}


  .news__heading {
    font-size: 1.8rem !important;
    text-align: center !important;
  }

  .news__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
/* Extra small mobile fallback for Stats */
@media (max-width: 480px) {
  .discover__stats {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    text-align: center !important;
  }
}



/*DESKTOP ONLY STYLES*/
@media (min-width: 992px) {
  .steps {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .steps__right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 520px;
    flex: 1;
  }
  .steps__circle-img {
    position: absolute;
    left: -20px;
    bottom: -20px;
    top: auto;
    width: 330px;
    height: 330px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: visible;
    box-shadow: 0 24px 64px rgba(8, 120, 201, 0.20);
    z-index: 2;
  }
  .steps__circle-img img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%; 
    object-fit: cover;
    object-position: center top;
  }
  .steps__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 36px);
    height: calc(100% + 36px);
    border-radius: 50%;
    border: 2px dashed rgba(8, 120, 201, 0.35);
    pointer-events: none;
    z-index: -1;
  }
  .steps__badge-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .steps__plane-icon {
    position: absolute;
    bottom: 0;
    right: 30px;
    transform: translateY(50%);
    z-index: 10;
  }
  .steps__tagline {
    position: absolute;
    bottom: -55px;
    left: 145px;
    transform: translateX(-50%);
    z-index: 10;
  }
  .steps__polaroid--top {
    top: 20px;
    right: 20px;
    z-index: 3;
  }
  .steps__polaroid--bottom {
    top: 240px;
    right: 20px;
    z-index: 4;
  }
}