@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #bf0000;
  --secondary: #ee3939;
  --bg: #f5f7ff;
  --surface: #eef0fb;
  --white: #ffffff;
  --text: #292929;
  --muted: #383838;
  --border: rgba(0, 0, 0, 0.08);
  --dark: #1c1c1c;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Serif", serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── BACKGROUND GLOW ── */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.07) 0%,
    rgba(124, 58, 237, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(245, 247, 255, 0.85);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}

.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo img {
  height: 55px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background-color: #fff;
  color: #333 !important;
  padding: 9px 22px;
  border-radius: 10px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: opacity 0.2s !important;
  border: 1px solid #ffe4e4;
}

.nav-cta:hover {
  opacity: 0.85;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 40px 50px;
  background-image:
    linear-gradient(
      180deg,
      rgba(28, 48, 78, 0.897) 0%,
      rgba(6, 13, 40, 0.795) 100%
    ),
    url("../images/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.hero h2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  color: var(--white);
}

.engine-container {
  width: 100%;
  max-width: 1120px;
  margin: 30px auto;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

h1 {
  /* font-family: "Syne", sans-serif; */
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 820px;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 span {
  background: linear-gradient(135deg, var(--accent) 20%, #7c3aed 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 8px;
  color: var(--white);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ── TFN BLOCK ── */
.tfn-block {
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
  animation: fadeUp 0.7s 0.3s ease both;
}

.tfn-block .tfn-number {
  animation: fadeUp 0.7s 0.4s ease both;
  color: #fff;
}

.tfn-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
}

.tfn-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 12vw, 3rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  background: linear-gradient(
    135deg,
    #1e3a8a 0%,
    var(--accent) 50%,
    #7c3aed 100%
  );
  filter: drop-shadow(0 4px 32px rgba(37, 99, 235, 0.18));
  cursor: pointer;
  transition: filter 0.3s;
  user-select: all;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tfn-number:hover {
  filter: drop-shadow(0 8px 48px rgba(37, 99, 235, 0.32));
}

.tfn-number img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.tfn-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.1),
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.tfn-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.38);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-outline:hover {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.04);
}

/* ── STATS ROW ── */
.stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.5s ease both;
}

.stat-item {
  text-align: center;
}

.stat-val {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ── FEATURES ── */
.section {
  position: relative;
  z-index: 1;
  padding: 50px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 25px 15px;
  transition:
    border-color 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgb(255, 214, 214);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 55px;
  height: 55px;
  border: 1px solid rgb(255 231 231);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0px auto;
  margin-bottom: 20px;
}

.feature-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-desc {
  color: var(--muted);
  font-size: 0.813rem;
  line-height: 1.65;
}

/* ── CONTACT CTA ── */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 40px 120px;
  overflow: hidden;
  background-color: #444;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 70px 60px;
  position: relative;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(37, 99, 235, 0.06),
    transparent 60%
  );
  pointer-events: none;
}

.cta-inner h2 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.cta-inner p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-tfn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--#444), #7c3aed);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-tfn img {
  height: 50px;
}

/* ── DESTINATIONS ── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
}

.destination-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: scale(1.05);
}

.destination-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}

.destination-card:hover .destination-image {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.destination-name {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ── FOOTER ── */
footer {
  width: 100%;
  background: var(--white);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.footer-container {
  padding: 40px 20px;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .logo {
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero card (right side) */
.hero-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px;
}
.hero-card h3 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
}
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.form-row {
  display: flex;
  gap: 10px;
  width: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  text-align: left;
}
.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 13px;
  outline: none;
  width: 100%;
  transition:
    border-color 0.2s,
    background 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}
.form-group select {
  cursor: pointer;
}
.form-group select:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}
.form-group select option {
  background: var(--dark);
  color: #fff;
}
.form-group input:focus,
.form-group select:focus {
  border-color: rgb(255, 185, 175);
  background: rgba(255, 255, 255, 0.13);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.4);
}
.form-cta {
  width: 230px;
  padding: 14px;
  background: var(--primary);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0px auto;
  margin-top: 12px;
}
.form-cta:hover {
  background: var(--secondary);
}

.content-section {
  width: 100%;
  padding: 40px 15px;
  background-color: #fff;
  position: relative;
}

.privacy-terms-sect {
  /* padding-top: 100px; */
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.content-section h1,
h2,
h3 {
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 21px;
  line-height: 28px;
}

.content-section h1:first-child,
h2:first-child,
h3:first-child {
  margin-top: 10px;
}

.content-section p {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.content-section p a {
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.content-section p a:hover {
  color: var(--primary);
}

.content-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.content-section ul li {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.content-section ul li a {
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.content-section ul li a:hover {
  color: var(--primary);
}

.banner-sect {
  width: 100%;
  height: 300px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgb(0 0 0 / 81%), rgb(0 0 0 / 45%)),
    url(../images/banner.webp);
  background-size: cover;
  background-position: center center;
}

.banner-text {
  width: 100%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.banner-text h2 {
  color: #fff;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
}

.about-sect {
  width: 100%;
  min-height: 60vh;
}

/* ── FAQ SECTION ── */
.faq-sect {
  width: 100%;
  padding: 80px 20px;
  background: var(--bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: -0.02em;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(191, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition:
    background 0.3s,
    color 0.3s;
  text-align: left;
  font-family: inherit;
}

.accordion-header:hover {
  background: rgba(191, 0, 0, 0.02);
  color: var(--primary);
}

.accordion-item.active .accordion-header {
  background: rgba(191, 0, 0, 0.04);
  color: var(--primary);
}

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 24px;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 15px 24px 20px 30px;
}

.accordion-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ─── MODAL POPUP ─── */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  max-width: 500px;
  width: 90%;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 3px 15px;
  text-align: right;
  border-bottom: none !important;
  padding-bottom: 0px !important;
  /* border-bottom: 1px solid var(--border); */
}

.modal-close-btn {
  font-size: 28px;
  font-weight: bold;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close-btn img {
  height: 15px;
  opacity: 0.7;
}

.modal-close-btn:hover {
  color: var(--dark);
}

.modal-close-btn:hover img {
  opacity: 1;
}

.modal-body {
  padding: 10px 30px 30px;
  text-align: center;
}

.modal-icon {
  font-size: 50px;
  margin-bottom: 0px;
}

.modal-icon img {
  height: 60px;
}

.modal-body h2 {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 26px;
  font-weight: 800;
}

.modal-body p {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.modal-subtext {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px !important;
}

.modal-subtext a {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.modal-subtext a:hover {
  color: var(--primary);
}

.modal-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: none;
}

.modal-btn:hover {
  background: var(--teal2);
}

.nav-cta.tfn-mob {
  display: none;
}

/* ── MOBILE MENU TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  z-index: 102;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 10;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 80px 22px 24px;
    box-shadow: -8px 0 28px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 101;
    overflow-y: auto;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 12px 8px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
  }
  .section {
    padding: 70px 24px;
  }
  .features-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 16px;
  }
  .feature-card{
    min-width: 220px;
  }
  .stats {
    gap: 32px;
    flex-wrap: wrap;
  }
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .cta-inner {
    padding: 50px 28px;
  }

  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {

    .hero {
        padding: 110px 15px 30px;
    }

    .hero h2{
      font-size: 24px !important;
    }

  .main-row-group {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .engine-container {
    margin: 15px auto;
  }

  .destinations-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    scrollbar-width: none;
  }

  .destination-card {
    min-width: 210px;
  }

  .destination-image {
    width: 180px;
    height: 180px;
  }

  .destination-name {
    font-size: 1.1rem;
  }

  .content-section p {
    font-size: 14px;
  }

  .content-section ul li {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .destinations-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-container {
    row-gap: 8px;
  }

  .tfn-number {
    font-size: clamp(2rem, 12vw, 2rem);
  }

  .tfn-number img {
    height: 34px;
  }

  .nav-links .nav-cta{
    font-size: 16px !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 15px 30px;
    padding-top: 100px;
  }

  .hero-card {
    padding: 20px 16px;
  }

  .form-group {
    width: 100%;
  }

  .logo img {
    height: 36px;
  }

  .navbar {
    padding: 6px 8px;
  }

  .hero h2 {
    font-size: 21px;
  }

  .form-group input,
  .form-group select {
    padding: 10px 8px;
    font-size: 12px;
  }

  .tfn-block {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: 0.8rem;
  }

  .content-section h1,
  h2,
  h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .content-section h1,
  h2,
  h3:first-child {
    margin-top: 0px;
  }

  .section-title {
    font-size: clamp(1.5rem, 4vw, 1.6rem);
    margin-bottom: 40px;
  }

  .section {
    padding: 40px 18px;
  }

  .cta-section {
    padding: 50px 16px 60px;
  }

  .cta-tfn {
    font-size: 1.6rem;
  }

  .cta-tfn img {
    height: 35px;
  }

  .cta-inner {
    padding: 35px 10px;
  }

  .cta-inner p {
    font-size: 0.813rem;
    margin-bottom: 20px;
  }

  .cta-inner h2 {
    font-size: 2rem;
  }

  .cta-inner .btn-primary {
    padding: 10px 32px !important;
    font-size: 1rem !important;
  }

  .banner-sect {
    height: 240px;
  }

  .nav-cta.tfn-mob {
    display: block;
    text-decoration: none;
    padding: 5px 12px;
  }
}

@media screen and (max-width: 359px) {
    .logo img {
        height: 30px;
    }
  .tfn-number {
    font-size: clamp(1.5rem, 10vw, 1.6rem);
  }

  .tfn-number img {
    height: 30px;
  }

  .form-group input,
  .form-group select {
    font-size: 11px;
  }
}
