/* =========================================================
   YatraSaathi — Jadoo Theme index.css
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Volkhov:wght@700&display=swap');

:root {
  --clr-primary: #DF6951;
  --clr-secondary: #F1A501;
  --clr-heading: #181E4B;
  --clr-text: #5E6282;
  --font-heading: 'Volkhov', serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}


/* ── Utilities ─────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.section-padding {
  padding: 100px 0;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--clr-text);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.125rem);
  color: var(--clr-heading);
  text-transform: capitalize;
}

/* ── Animation ─────────────────────────────────────────── */
.plane-animation {
  position: fixed;
  top: 0;
  left: 0;
  font-size: 2.5rem;
  color: var(--clr-primary);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 5px 15px rgba(223, 105, 81, 0.4);
}

@keyframes logoPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 transparent);
  }
}

.logo-pop {
  animation: logoPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* ── Background Blob ───────────────────────────────────── */
.blob-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 705px;
  height: 814px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 705 814' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M705 0H0C0 0 54.4983 147.16 186.294 205.82C318.09 264.479 285.344 433.003 338.401 534.821C391.458 636.639 494.619 655.772 543.684 723.111C592.748 790.451 705 814 705 814V0Z' fill='%23FFF1DA'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  z-index: -2;
}

/* ── Header ────────────────────────────────────────────── */
.header {
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(250, 250, 251, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(24, 30, 75, 0.06);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  padding: 10px 0;
  border-bottom: 1px solid rgba(24, 30, 75, 0.08);
}

/* Dock/Scroll toggle visibility */
#dock-nav {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: all;
  z-index: 10;
}

#dock-nav.nav-hidden {
  opacity: 0;
  transform: translateY(calc(-50% - 10px));
  pointer-events: none;
}

.scroll-nav {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(calc(-50% + 10px));
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.scroll-nav.nav-visible {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: all;
}

/* Scroll nav pill container */
.scroll-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  padding: 6px 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.scroll-nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.scroll-nav-link i {
  font-size: 13px;
}

.scroll-nav-link:hover,
.scroll-nav-link.active {
  background: rgba(223, 105, 81, 0.08);
  color: var(--clr-primary);
  border-color: rgba(223, 105, 81, 0.15);
}

.scroll-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.scroll-nav-login {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.scroll-nav-login:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.scroll-nav-signup {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--clr-primary), #FF8E75);
  box-shadow: 0 4px 15px rgba(223, 105, 81, 0.3);
  transition: all 0.25s ease;
}

.scroll-nav-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(223, 105, 81, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  /* So absolutely-positioned navs anchor here */
}

.logo {
  display: flex;
  align-items: center;
  height: 75px;
}

.logo img {
  height: 100%;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transform-origin: left center;
  transform: scale(1.15);
}

/* ── macOS Dock Navbar Styles ──────────────────────────────── */
.dock-outer {
  margin: 0;
  display: flex;
  max-width: 100%;
  align-items: center;
}

.dock-panel {
  display: flex;
  align-items: flex-end;
  width: fit-content;
  gap: 12px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.65);
  /* Light glassmorphism */
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  box-shadow: 0 15px 35px rgba(24, 30, 75, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  margin-right: 0;
}

.dock-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  width: 45px;
  height: 45px;
  padding: 0;
  transform-origin: bottom center;
}

.dock-item:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(24, 30, 75, 0.06);
  border: 1px solid rgba(255, 255, 255, 1);
}

.dock-item.signup-item {
  background: linear-gradient(135deg, var(--clr-primary), #FF8E75);
  box-shadow: 0 8px 20px rgba(223, 105, 81, 0.25);
  border: none;
}

.dock-item.signup-item:hover {
  background: linear-gradient(135deg, #FF8E75, var(--clr-primary));
  box-shadow: 0 12px 25px rgba(223, 105, 81, 0.35);
  border: none;
}

.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--clr-text);
  line-height: 1;
  transition: color 0.3s ease;
}

.dock-item.signup-item .dock-icon {
  color: #fff;
}

.dock-item:hover .dock-icon {
  color: var(--clr-primary);
}

.dock-item.signup-item:hover .dock-icon {
  color: #fff;
}

.dock-icon i {
  line-height: 1;
  display: block;
}

.dock-label {
  position: absolute;
  top: 60px;
  left: 50%;
  width: fit-content;
  white-space: pre;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--clr-heading);
  padding: 4px 10px;
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transform: translateX(-50%) translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 20px rgba(24, 30, 75, 0.15);
  font-family: var(--font-body);
  z-index: 200;
}

.dock-item:hover .dock-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dock-divider {
  width: 1px;
  height: 35px;
  background: rgba(24, 30, 75, 0.1);
  margin: 0 5px;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 50px 0 50px;
  position: relative;
}

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

.hero-content {
  flex: 1;
  max-width: 550px;
}

.hero-subtitle {
  color: var(--clr-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw + 1rem, 5.25rem);
  line-height: 1.2;
  color: var(--clr-heading);
  margin-bottom: 25px;
  position: relative;
  letter-spacing: -0.02em;
}

.highlight-enjoy {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.title-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.hero-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--clr-text);
  margin-bottom: 35px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.btn-yellow {
  background-color: var(--clr-secondary);
  color: #fff;
  padding: 18px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 15px 30px rgba(241, 165, 1, 0.3);
  display: inline-block;
}

.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(241, 165, 1, 0.4);
}

.btn-play {
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: #686D77;
  font-family: var(--font-body);
}

.play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--clr-primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 30px rgba(223, 105, 81, 0.4);
  transition: transform 0.3s;
}

.btn-play:hover .play-icon {
  transform: scale(1.1);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

/* ── Services ──────────────────────────────────────────── */
.services {
  padding: 40px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 65px;
  position: relative;
  z-index: 2;
}

/* Plus decoration */
.plus-decor {
  position: absolute;
  top: 10px;
  right: -20px;
  z-index: 1;
  opacity: 0.8;
}

.service-card {
  text-align: center;
  padding: 30px 30px 35px;
  border-radius: 24px;
  background: transparent;
  border: 1.5px solid transparent;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Subtle top-left accent stripe on hover */
.service-card::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), transparent);
  border-radius: 0 4px 4px 0;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Bottom right glow dot */
.service-card::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(223, 105, 81, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -20px;
  right: -20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  background: #fff;
  border-color: rgba(223, 105, 81, 0.15);
  box-shadow:
    0 20px 60px rgba(223, 105, 81, 0.07),
    0 8px 20px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(223, 105, 81, 0.08);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card.active {
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon img {
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-family: var(--font-body);
  color: #1E1D4C;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card:hover h3 {
  color: var(--clr-primary);
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--clr-text);
}

/* ── Destinations ──────────────────────────────────────── */
.destinations {
  padding: 100px 0;
  position: relative;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.spring-decor {
  position: absolute;
  right: -60px;
  bottom: 80px;
  z-index: 1;
}

.dest-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 100px 80px rgba(0, 0, 0, 0.02), 0 20px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 100px 80px rgba(0, 0, 0, 0.04), 0 20px 30px rgba(0, 0, 0, 0.1);
}

.dest-image {
  height: 330px;
  width: 100%;
  overflow: hidden;
}

.dest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-image img {
  transform: scale(1.05);
}

.dest-info {
  padding: 28px 25px;
}

.dest-top {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-text);
  margin-bottom: 20px;
}

.dest-bottom {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 14px;
}

.dest-bottom i {
  color: #080809;
}

/* ── Steps Section ─────────────────────────────────────── */
.steps-section {
  padding: 100px 0;
}

.steps-container {
  display: flex;
  align-items: center;
  gap: 120px;
}

.steps-content {
  flex: 1.1;
}

.steps-content .section-heading {
  text-align: left;
  margin-bottom: 30px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: 40px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.step-icon.yellow {
  background: #F0BB1F;
}

.step-icon.orange {
  background: #F15A2B;
}

.step-icon.teal {
  background: #006380;
}

.step-text h3 {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--clr-text);
  font-weight: 700;
  margin-bottom: 6px;
}

.step-text p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.steps-image {
  flex: 0.9;
  position: relative;
}

.steps-image::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: rgba(89, 177, 230, 0.3);
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
}

.trip-card {
  background: #fff;
  padding: 22px;
  border-radius: 26px;
  box-shadow: 0 100px 80px rgba(0, 0, 0, 0.02), 0 20px 30px rgba(0, 0, 0, 0.05);
  max-width: 380px;
  position: relative;
}

.trip-card>img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 25px;
}

.trip-card h4 {
  font-family: var(--font-body);
  font-size: 18px;
  color: #080809;
  font-weight: 500;
  margin-bottom: 12px;
}

.trip-card p {
  font-size: 16px;
  color: #84829A;
  margin-bottom: 22px;
  font-weight: 500;
}

.trip-icons {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.trip-icons span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5F5F9;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #84829A;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.trip-icons span:hover {
  background: var(--clr-primary);
  color: #fff;
}

.trip-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #84829A;
  font-size: 16px;
  font-weight: 500;
}

.trip-footer i.fa-heart {
  cursor: pointer;
}

.ongoing-card {
  position: absolute;
  bottom: 60px;
  right: -100px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  width: 270px;
  z-index: 10;
}

.ongoing-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.oc-status {
  font-size: 14px;
  color: #84829A;
  display: block;
  font-weight: 500;
}

.oc-info {
  flex: 1;
}

.oc-info h4 {
  font-size: 18px;
  color: #080809;
  margin: 6px 0 10px;
}

.oc-progress {
  font-size: 14px;
  color: #080809;
  font-weight: 500;
}

.oc-bar {
  width: 100%;
  height: 5px;
  background: #F5F5F9;
  border-radius: 30px;
  margin-top: 10px;
  overflow: hidden;
}

.oc-fill {
  width: 40%;
  height: 100%;
  background: #8A79DF;
  border-radius: 30px;
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
}

.testi-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.testi-content {
  flex: 1;
}

.testi-cards {
  flex: 1;
  position: relative;
  height: 250px;
}

.testi-card {
  position: absolute;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  width: 100%;
  transition: 0.4s ease;
}

.testi-card.active {
  z-index: 2;
  top: 0;
  left: 0;
}

.testi-card.next {
  z-index: 1;
  top: 40px;
  left: 30px;
  opacity: 0.5;
}

.testi-card.hidden-card {
  z-index: 0;
  top: 80px;
  left: 60px;
  opacity: 0;
  pointer-events: none;
}

.testi-avatar {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-card p {
  font-size: 16px;
  color: var(--clr-text);
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 500;
}

.testi-card h4 {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--clr-text);
  font-weight: 600;
  margin-bottom: 5px;
}

.testi-card span {
  font-size: 14px;
  color: var(--clr-text);
}

.testi-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.testi-controls i {
  color: #39425D;
  cursor: pointer;
  font-size: 20px;
  opacity: 0.3;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.testi-controls i:hover {
  opacity: 0.7;
  transform: scale(1.15);
}

.testi-controls i.active {
  opacity: 1;
}

/* ── Brands ────────────────────────────────────────────── */
.brands {
  padding: 60px 0;
}

.brands-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.brands img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
  height: 40px;
  object-fit: contain;
}

.brands img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* ── Newsletter ────────────────────────────────────────── */
.newsletter-section {
  padding: 100px 0;
}

.newsletter-box {
  background: rgba(223, 105, 81, 0.2);
  border-radius: 129px 20px 20px 20px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid rgba(223, 105, 81, 0.15);
  z-index: 1;
}

.newsletter-box::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid rgba(223, 105, 81, 0.15);
  z-index: 1;
}

.send-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(180deg, #FF946D 0%, #FF7D68 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(255, 125, 104, 0.4);
}

.newsletter-box h2 {
  font-size: 33px;
  color: var(--clr-text);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.input-wrap {
  position: relative;
  width: 420px;
}

.input-wrap i {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #39425D;
  font-size: 18px;
}

.input-wrap input {
  width: 100%;
  padding: 24px 24px 24px 65px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
}

.btn-subscribe {
  background: linear-gradient(180deg, #FF946D 0%, #FF7D68 100%);
  color: #fff;
  border: none;
  padding: 20px 45px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
  font-family: var(--font-body);
}

.btn-subscribe:hover {
  opacity: 0.9;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  padding: 80px 0 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-brand {
  flex: 1.5;
}

.footer-logo {
  width: 155px;
  height: auto;
  margin-bottom: 14px;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 13.5px;
  color: var(--clr-text);
  max-width: 230px;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-brand-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(24, 30, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(223, 105, 81, 0.3);
}

.footer-links {
  display: flex;
  flex: 2;
  justify-content: space-around;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 21px;
  color: #080809;
  margin-bottom: 30px;
}

.footer-col a {
  display: block;
  font-size: 18px;
  color: var(--clr-text);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--clr-primary);
}

.footer-social {
  flex: 1;
}

.footer-social .social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #080809;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  font-size: 18px;
}

.social-icons a.active,
.social-icons a:hover {
  background: conic-gradient(from 180deg at 50% 50%, #B8D2F1 0deg, #F289AA 60deg, #C68BF0 106.09deg, #D164DA 153.75deg, #C963E8 221.25deg, #BFC2E8 258.75deg, #FFC999 288.75deg, #D0D8C9 315deg, #BAD0F1 334.13deg, #CED8CB 358.97deg, #B8D2F1 360deg);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-social p {
  font-size: 20px;
  color: var(--clr-text);
  margin-bottom: 18px;
  font-weight: 500;
}

.app-buttons {
  display: flex;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 500;
}

/* ── Scroll Animations ───────────────────────────────────── */
@keyframes floatY {

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

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

@keyframes floatX {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

.step-item {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.6s ease-out, translate 0.6s ease-out;
}

.step-item.show-scroll {
  opacity: 1;
  translate: 0 0;
}

.trip-card {
  opacity: 0;
  scale: 0.9;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), scale 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.trip-card.show-scroll {
  opacity: 1;
  scale: 1;
  animation: floatY 6s ease-in-out infinite;
  animation-delay: 0.8s;
}

.ongoing-card {
  opacity: 0;
  translate: 50px 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), translate 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.ongoing-card.show-scroll {
  opacity: 1;
  translate: 0 0;
  animation: floatX 8s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }


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

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

  .steps-container {
    flex-direction: column;
  }

  .ongoing-card {
    right: 0;
    bottom: -50px;
  }

  .testi-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 60px;
  }

  .footer-links {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }


  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-box {
    padding: 40px 20px;
    border-radius: 40px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .input-wrap {
    width: 100%;
  }

  .brands-container {
    justify-content: center;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: left;
  }
  
  .footer-col {
    flex: none;
  }
  
  .footer-col h3 {
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .footer-col a {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo {
    margin: 0 auto 15px auto;
  }
  
  .newsletter-box h2 {
    font-size: 26px;
  }
  
  .testi-cards {
    height: 350px;
    width: 100%;
    min-width: 100%;
    align-self: stretch;
    margin-top: 20px;
  }
  
  .testi-card.next {
    left: 0 !important;
    top: 20px !important;
    transform: scale(0.95);
  }
  
  .testi-avatar {
    left: 50% !important;
    transform: translateX(-50%);
    top: -30px;
  }
  
  .testi-card {
    text-align: center;
    padding-top: 45px;
  }
  
  .scroll-nav-link, .scroll-nav-login, .scroll-nav-signup, .dock-label {
    font-size: 0 !important;
    padding: 12px !important;
    gap: 0 !important;
  }
  
  .scroll-nav-link i, .scroll-nav-login i, .scroll-nav-signup i, .dock-icon {
    font-size: 16px !important;
    margin: 0 !important;
  }
  
  .dock-panel {
    transform: none;
  }
  
  .scroll-nav {
    transform: scale(0.8) translateY(calc(-50% + 10px));
    transform-origin: right center;
  }
  
  .scroll-nav.nav-visible {
    transform: scale(0.8) translateY(-50%);
  }
  
  .logo img {
    max-width: 140px;
    transform: none;
  }
  
  .services, .steps-section, .testimonials, .newsletter-section {
    padding: 60px 0;
  }
  
  .brands {
    padding: 40px 0;
  }
  
  .footer {
    padding: 60px 0 30px;
    text-align: center;
  }
  
  .footer-social .social-icons {
    justify-content: center;
  }
  
  .app-buttons {
    justify-content: center;
  }
  
  .testi-card {
    padding: 20px;
  }
  
  .testi-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .dock-panel {
    transform: none;
  }
  
  .scroll-nav {
    transform: scale(0.65) translateY(calc(-50% + 10px));
  }
  
  .scroll-nav.nav-visible {
    transform: scale(0.65) translateY(-50%);
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .newsletter-box h2 {
    font-size: 20px;
  }
  
  .brands-container i {
    font-size: 28px !important;
  }
  
  .steps-image::before {
    display: none;
  }
  
  .trip-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
  }
  
  .ongoing-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
    width: 100%;
    transform: none !important;
    animation: none !important;
  }
  
  .ongoing-card.show-scroll {
    translate: 0 0 !important;
    animation: none !important;
  }
}