@font-face {
  font-family: "Hanora";
  src: url(./fonts/hanora-regular.otf) format("truetype");
  font-weight: 20;
  font-style: normal;
}

#hero {
  height: clamp(80vh, 85svh, 85vh);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
}


.hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  z-index: 1;
}

.hero-fallback {
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(10, 31, 68, 0.25) 0%,
      rgba(10, 31, 68, 0.6) 55%,
      rgba(10, 31, 68, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  margin-top: 70px;
  padding: 0 clamp(16px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(14px);
  padding: 8px 22px;
  border-radius: 40px;
  font-size: clamp(0.62rem, 1.1vw, 0.72rem);
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 1s 0.4s both;
}

.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5.5vw, 7.2rem);
  line-height: 1.12;
  font-weight: 300;
  color: var(--white);
  animation: fadeUp 1s 0.6s both;
  word-break: keep-all;
  hyphens: none;
  /* Let the text breathe — no forced breaks on large screens */
  white-space: normal;
}

/* Each phrase stays on its own line, never wraps mid-word */
.hero__heading-line {
  display: block;
  white-space: nowrap;
}


@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
    line-height: 1.18;
  }
}

/* Small phones (≤ 375px) — e.g. iPhone SE, older Androids */
@media (max-width: 375px) {
  .hero-headline {
    font-size: clamp(2rem, 9.5vw, 2.6rem);
    line-height: 1.2;
  }
}

/* Tablets (481px – 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-headline {
    font-size: clamp(3rem, 6.5vw, 4.5rem);
    line-height: 1.14;
  }
}

/* Tablets landscape / small desktop (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-headline {
    font-size: clamp(4rem, 6vw, 5.5rem);
    line-height: 1.1;
  }
}

.hero-headline em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.88rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  margin: 22px auto 0;
  max-width: 620px;
  animation: fadeUp 1s 0.8s both;
}


  .hero-actions {
  display: flex;
  gap: clamp(12px, 2vw, 16px);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 32px);
  animation: fadeUp 1s 1s both;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: min(280px, 85vw);
  }
}


.hero-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
  animation: fadeUp 1s 1.2s both;
  background: rgba(10, 31, 68, 0.55);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  max-width: 780px;
  width: 100%;
}

.search-field-wrap {
  flex: 1 1 160px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.sf-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}

.sf-input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 0.86rem;
  width: 100%;
  transition: color 0.3s;
}

.sf-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.sf-input option {
  background: var(--navy);
  color: var(--white);
}

.search-go {
  flex: 0 0 auto;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  animation: scrollBob 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

@keyframes scrollBob {

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

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

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

@media (max-width: 768px) {
  #hero {
    height: clamp(70vh, 70svh, 70svh);
    padding: clamp(10px, 2.5vw, 26px);
  }
  .hero-content {
   margin-top: 65px;
  }
  .hero-scroll-hint {
    bottom: clamp(16px, 3vw, 24px);
  }
}

/* .section-title{
  font-family: 'Hanora', sans-serif;
} */
#services-preview {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}

.service-card {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  min-height: clamp(130px, 16vw, 170px);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.svc-img {
  flex: 0 0 clamp(100px, 22%, 160px);
  position: relative;
  overflow: hidden;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.svc-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  z-index: 2;
}

.svc-body {
  flex: 1;
  padding: clamp(18px, 2.5vw, 28px) clamp(16px, 2.5vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(229, 57, 53, 0.06) 0%,
      transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

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

.svc-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(229, 57, 53, 0.09);
  line-height: 1;
  pointer-events: none;
}

.svc-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.svc-desc {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.78rem, 1.1vw, 0.85rem);
  line-height: 1.7;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 14px;
  text-decoration: none;
  transition: gap 0.3s;
}

.svc-link:hover {
  gap: 10px;
}

.svc-icon {
  display: none;
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-img {
    flex: 0 0 90px;
  }
}

#counters {
  padding: clamp(60px, 10vw, 100px) clamp(16px, 5vw, 80px);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#counters::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 32px);
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.counter-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(229, 57, 53, 0.1);
  border-radius: var(--radius-md);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.counter-card:hover {
  background: rgba(229, 57, 53, 0.08);
  border-color: rgba(229, 57, 53, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(229, 57, 53, 0.1);
}

.counter-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(229, 57, 53, 0.15) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.counter-card:hover::before {
  opacity: 1;
}

.counter-icon {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.counter-card:hover .counter-icon {
  transform: scale(1.15) rotate(5deg);
}

.counter-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, #ffe57f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0 8px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.counter-card:hover .counter-num {
  transform: scale(1.1);
}

.counter-label {
  display: block;
  color: var(--white);
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.counter-card:hover .counter-label {
  color: var(--gold);
}

.counter-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s;
}

.counter-card:hover .counter-desc {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 3vw, 28px);
  }
}

@media (max-width: 640px) {
  .counters-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .counter-card {
    padding: 28px 24px;
  }
}

#why-choose-us {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.why-left {
  display: flex;
  flex-direction: column;
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(28px, 4vw, 44px);
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 20px);
  position: relative;
}

.why-feat-icon {
  flex: 0 0 clamp(46px, 6vw, 58px);
  height: clamp(46px, 6vw, 58px);
  border-radius: 10px;
  background: linear-gradient(135deg,
      rgba(229, 57, 53, 0.18) 0%,
      rgba(229, 57, 53, 0.06) 100%);
  border: 1px solid rgba(229, 57, 53, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  transition:
    background 0.3s,
    transform 0.3s;
  flex-shrink: 0;
}

.why-feature:hover .why-feat-icon {
  background: linear-gradient(135deg,
      rgba(229, 57, 53, 0.3) 0%,
      rgba(229, 57, 53, 0.12) 100%);
  transform: translateY(-2px);
}

.why-feat-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
  display: block;
}

.why-feat-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.78rem, 1.1vw, 0.86rem);
  line-height: 1.65;
}

.why-right {
  position: relative;
  height: clamp(420px, 58vw, 580px);
}

.why-img-main {
  position: absolute;
  inset: 0 0 60px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-img-accent {
  position: absolute;
  bottom: 0;
  left: -20px;
  width: clamp(140px, 30%, 200px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--navy);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.why-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-badge {
  position: absolute;
  top: 20px;
  right: -16px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 30px rgba(229, 57, 53, 0.35);
  min-width: 90px;
}

.why-badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.why-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  opacity: 0.8;
}

.why-img-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 50%,
      rgba(10, 31, 68, 0.55) 100%);
}

@media (max-width: 860px) {
  .why-split {
    grid-template-columns: 1fr;
  }

  .why-right {
    height: clamp(320px, 60vw, 440px);
    margin-top: 16px;
  }

  .why-img-accent {
    left: 10px;
  }

  .why-badge {
    right: 10px;
  }
}

.why-grid {
  display: none;
}

.why-card {
  display: none;
}

#destinations {
  background: var(--navy);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(12px, 1.8vw, 20px);
}

.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: clamp(180px, 24vw, 300px);
}

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(10, 31, 68, 0.93) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(14px, 2.2vw, 24px);
  transition: background 0.4s;
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(180deg,
      transparent 20%,
      rgba(10, 31, 68, 0.97) 100%);
}

.dest-country {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.dest-city {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
}

.dest-price {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 5px;
}

.dest-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.dest-large {
  grid-row: span 2;
}

@media (max-width: 700px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dest-large {
    grid-row: span 1;
  }
}

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

#testimonials {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.t-carousel-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 clamp(8px, 2vw, 16px);
}

.t-card {
  padding: clamp(24px, 4vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.t-card::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6rem, 12vw, 10rem);
  color: rgba(229, 57, 53, 0.08);
  position: absolute;
  top: -16px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.t-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 1rem;
  margin-bottom: 18px;
}

.t-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.t-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  overflow: hidden;
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.t-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.t-loc {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
  margin-top: 2px;
}

.t-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.t-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.t-prev {
  left: 0;
}

.t-next {
  right: 0;
}

@media (max-width: 600px) {
  .t-prev {
    left: 4px;
  }

  .t-next {
    right: 4px;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.t-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

#cta-strip {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 45vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}

#cta-strip:hover .cta-bg {
  transform: scale(1);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 31, 68, 0.88),
      rgba(13, 71, 161, 0.78));
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 5vw, 60px);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}