:root {
  --wv-green: #081C3A;
  --wv-green-dark: #0F2D5C;
  --wv-green-deep: #061A36;
  --wv-green-soft: #EAF7FB;

  --wv-orange: #FF7A00;
  --wv-orange-dark: #E86C00;
  --wv-orange-soft: #FFF4EC;

  --wv-dark: #081C3A;
  --wv-ink: #1E293B;
  --wv-muted: #667085;
  --wv-line: #E5E7EB;
  --wv-white: #FFFFFF;
  --wv-cloud: #F7FAFC;
  --wv-gold: #F6B84B;

  --wv-radius: 18px;
  --wv-radius-sm: 12px;
  --wv-max: 1180px;
  --wv-shadow: 0 22px 60px rgba(8, 28, 58, 0.14);
  --wv-shadow-soft: 0 14px 36px rgba(8, 28, 58, 0.09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--wv-cloud);
  color: var(--wv-ink);
  font-family: "Segoe UI", Inter, Roboto, Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: var(--wv-muted);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--wv-dark);
  color: var(--wv-white);
  padding: 10px 15px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 12px max(22px, calc((100% - var(--wv-max)) / 2));
  border-bottom: 1px solid rgba(15, 155, 15, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(13, 17, 23, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--wv-dark);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.nav-links,
.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #263244;
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.menu a:hover,
.menu a:focus-visible,
.nav-links a.active {
  background: var(--wv-green-soft);
  color: var(--wv-green-dark);
  transform: translateY(-1px);
}

.nav-cta,
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--wv-orange), #ff8a2c);
  color: var(--wv-white);
  box-shadow: 0 14px 28px rgba(255, 107, 0, 0.24);
}

.nav-cta:hover,
.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, var(--wv-orange-dark), var(--wv-orange));
  color: var(--wv-white);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 155, 15, 0.2);
  border-radius: 50%;
  background: var(--wv-white);
  color: var(--wv-green-dark);
  box-shadow: 0 10px 24px rgba(13, 17, 23, 0.08);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle {
  gap: 4px;
  flex-direction: column;
}

.navbar.nav-open .nav-toggle span {
  opacity: 0;
}

.navbar.nav-open .nav-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.navbar.nav-open .nav-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */

.btn,
.cta-button,
.secondary-btn,
.package-card button,
.footer-btn,
.btn-green,
.btn-red,
.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.cta-button:hover,
.secondary-btn:hover,
.package-card button:hover,
.footer-btn:hover,
.btn-green:hover,
.btn-red:hover,
.submit:hover {
  transform: translateY(-2px);
}

.btn-primary,
.cta-button,
.package-card button,
.footer-btn,
.submit {
  background: linear-gradient(135deg, var(--wv-orange), #ff8b34);
  color: var(--wv-white);
  box-shadow: 0 16px 34px rgba(255, 107, 0, 0.24);
}

.btn-primary:hover,
.cta-button:hover,
.package-card button:hover,
.footer-btn:hover,
.submit:hover {
  background: linear-gradient(135deg, var(--wv-orange-dark), var(--wv-orange));
  color: var(--wv-white);
}

.btn-green,
.btn-secondary {
  background: linear-gradient(135deg, var(--wv-green), #18bd18);
  color: var(--wv-white);
  box-shadow: 0 16px 34px rgba(15, 155, 15, 0.24);
}

.btn-light,
.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
  color: var(--wv-white);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-light:hover,
.secondary-btn:hover {
  background: var(--wv-white);
  color: var(--wv-green-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--wv-green-dark);
  font-weight: 900;
}

.text-link:hover {
  color: var(--wv-orange-dark);
}

/* Layout */

.container,
.section-inner {
  width: min(100% - 36px, var(--wv-max));
  margin: 0 auto;
}

.section,
.packages,
.intl-section,
.blog-section,
.about,
.contact,
.package-detail,
.partner-form-wrapper,
.custom-form-wrapper,
.why-partner,
.service-section {
  padding: 78px 24px;
}

.section-intro,
.service-intro {
  width: min(100%, 780px);
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker,
.eyebrow,
.kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--wv-green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-intro h2,
.service-intro h2,
.why-copy h2,
.form-copy h2,
.packages h2,
.intl-header h2,
.blog-section h2,
.about h2,
.contact h2,
.custom-form-wrapper h2,
.custom-form-wrapper h3,
.package-detail h2 {
  color: var(--wv-dark);
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.section-intro p,
.service-intro p,
.why-copy p,
.form-copy p,
.about p,
.contact p {
  font-size: 1.03rem;
}

/* Hero */

/* Hero */

.hero,
.visa-hero,
.service-hero,
.partner-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--wv-white);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82svh;
  padding: 108px 24px 84px;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.15)
    ),
    url("https://images.unsplash.com/photo-1500835556837-99ac94a94552?auto=format&fit=crop&w=1800&q=82")
    center/cover no-repeat;
}

.hero::before,
.service-hero::before,
.visa-hero::before,
.partner-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: none;
}

.hero-content,
.hero-box {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 16px;
}

.hero-content h1,
.hero-box h1,
.service-hero h1,
.visa-hero h1 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2.45rem, 7vw, 5rem);
  line-height: 0.98;
}

.hero-content p,
.hero-box p,
.service-hero p,
.hero-lede {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.visa-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-badges,
.hero-stats,
.service-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-badge,
.hero-stats div,
.service-stats div {
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--wv-radius-sm);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.blog-hero {
  min-height: 46svh;
}

.hero-overlay {
  width: 100%;
}
/* Floating services and search */

.floating-services {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  width: min(100% - 32px, 1040px);
  margin: -54px auto 34px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--wv-shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.floating-item,
.service-card,
.intl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 106px;
  border: 1px solid transparent;
  border-radius: 22px;
  color: var(--wv-dark);
  cursor: pointer;
  text-align: center;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.floating-item:hover,
.service-card:hover,
.intl-item:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 155, 15, 0.18);
  background: var(--wv-white);
  box-shadow: 0 16px 34px rgba(15, 155, 15, 0.12);
}

.floating-item i,
.service-card i,
.intl-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--wv-green-soft), #ffffff);
  color: var(--wv-green);
  font-size: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(15, 155, 15, 0.1);
  transition: transform 0.24s ease, color 0.24s ease;
}

.floating-item:hover i,
.service-card:hover i,
.intl-item:hover i {
  transform: scale(1.08) rotate(-3deg);
  color: var(--wv-orange);
}

.floating-item span,
.service-card span,
.intl-item p {
  margin: 0;
  color: #233047;
  font-size: 0.9rem;
  font-weight: 900;
}

.search-container {
  display: flex;
  align-items: center;
  width: min(100% - 32px, 600px);
  margin: 36px auto 20px;
  border: 1px solid rgba(15, 155, 15, 0.14);
  border-radius: 999px;
  overflow: hidden;
  background: var(--wv-white);
  box-shadow: var(--wv-shadow-soft);
}

.search-container input[type="text"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 15px 18px;
  color: var(--wv-dark);
  outline: none;
}

.search-container input[type="text"]::placeholder {
  color: #98a2b3;
}

.search-container button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  min-height: 54px;
  border: 0;
  background: var(--wv-green);
  color: var(--wv-white);
  transition: background 0.2s ease;
}

.search-container button:hover {
  background: var(--wv-green-dark);
}

.no-results {
  display: none;
  width: min(100% - 32px, 560px);
  margin: 0 auto 24px;
  border-radius: var(--wv-radius-sm);
  padding: 14px 16px;
  background: var(--wv-orange-soft);
  color: var(--wv-orange-dark);
  text-align: center;
  font-weight: 800;
}

.no-results.is-visible {
  display: block;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 18px 0 8px;
}

.service-card {
  min-height: 138px;
  border-color: var(--wv-line);
  background: var(--wv-white);
  box-shadow: var(--wv-shadow-soft);
}

/* Cards and marketplace sections */

.packages,
.intl-section,
.blog-section {
  width: min(100%, var(--wv-max));
  margin: 0 auto;
}

.packages > h2,
.blog-section > h2 {
  text-align: center;
}

.package-list,
.blog-grid,
.cards,
.stats,
.feature-grid,
.destination-grid,
.testimonial-grid,
.coverage-grid,
.benefit-grid,
.docs-grid,
.document-list,
.country-grid {
  display: grid;
  gap: 22px;
}

.package-list,
.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.package-card,
.blog-card,
.card,
.service-box,
.note-box,
.stat-box,
.visa-card,
.why-card,
.testimonial-card,
.country-card,
.document-item,
.faq-item,
.feature-card,
.destination-card-lite,
.coverage-card,
.benefit-card,
.converter-card,
.service-hero-card {
  border: 1px solid var(--wv-line);
  border-radius: var(--wv-radius);
  background: var(--wv-white);
  box-shadow: var(--wv-shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.package-card,
.blog-card,
.card {
  position: relative;
  overflow: hidden;
}

.package-card:hover,
.blog-card:hover,
.card:hover,
.feature-card:hover,
.destination-card-lite:hover,
.coverage-card:hover,
.benefit-card:hover,
.visa-card:hover,
.why-card:hover,
.testimonial-card:hover,
.country-card:hover,
.document-item:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 155, 15, 0.24);
  box-shadow: var(--wv-shadow);
}

.package-card img,
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.package-card:hover img,
.blog-card:hover img {
  transform: scale(1.05);
}

.package-card h3,
.blog-card h3 {
  margin: 18px 20px 8px;
  color: var(--wv-dark);
  font-size: 1.18rem;
  line-height: 1.25;
}

.package-card p,
.blog-card p {
  margin: 0 20px 14px;
}

.package-card button {
  width: calc(100% - 40px);
  margin: 4px 20px 22px;
}

.card-badge,
.kedarnath-badge,
.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(13, 17, 23, 0.76);
  color: var(--wv-white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.package-badge.orange {
  background: rgba(255, 107, 0, 0.92);
}

.package-badge.green {
  background: rgba(15, 155, 15, 0.92);
}

.intl-section {
  background: transparent;
}

.intl-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.intl-header h2 {
  margin: 0;
  text-align: left;
}

.intl-header span {
  color: var(--wv-green-dark);
  font-weight: 900;
}

.intl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.intl-item {
  min-height: 130px;
  border-color: var(--wv-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(234, 248, 234, 0.42)),
    var(--wv-white);
  box-shadow: var(--wv-shadow-soft);
}

/* Forms */

.custom-form-wrapper,
.partner-form-wrapper {
  width: min(100%, 980px);
  margin: 0 auto;
}

.custom-form,
.partner-form,
.inquiry-form,
.visa-inquiry-form,
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(100%, 780px);
  margin: 0 auto;
  border: 1px solid rgba(15, 155, 15, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--wv-shadow);
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full,
.checkbox-field.full {
  grid-column: 1 / -1;
}

.custom-form label,
.partner-form label,
.inquiry-form label,
.quote-form label,
.form-field label {
  color: #233047;
  font-size: 0.93rem;
  font-weight: 900;
}

.custom-form input,
.custom-form textarea,
.custom-form select,
.partner-form input,
.partner-form textarea,
.partner-form select,
.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select,
.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid #cfdccf;
  border-radius: 16px;
  background: #fbfffb;
  color: var(--wv-dark);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-form textarea,
.partner-form textarea,
.inquiry-form textarea,
.quote-form textarea {
  min-height: 116px;
  resize: vertical;
}

.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus,
.partner-form input:focus,
.partner-form textarea:focus,
.partner-form select:focus,
.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus,
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--wv-green);
  background: var(--wv-white);
  box-shadow: 0 0 0 4px rgba(15, 155, 15, 0.14);
}

.custom-form .is-invalid,
.partner-form .is-invalid,
.quote-form .is-invalid {
  border-color: #e11d48;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
}

.custom-form button,
.quote-form button,
.partner-form button {
  width: 100%;
}

.checkbox-field,
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--wv-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.checkbox-field input,
.checkbox-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--wv-green);
}

.form-message {
  display: none;
  border-radius: 16px;
  padding: 13px 15px;
  background: var(--wv-green-soft);
  color: var(--wv-green-dark);
  font-weight: 800;
}

.form-message.is-visible {
  display: block;
}

/* Visa page */

.visa-page {
  background:
    linear-gradient(180deg, #f2fbf2 0%, #ffffff 44%, #f7fbf7 100%);
}

.visa-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: center;
  gap: 44px;
  min-height: 78svh;
  padding: 92px max(28px, calc((100% - var(--wv-max)) / 2)) 68px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.25) 54%,
      rgba(0, 0, 0, 0.10) 100%
    ),
    url("https://images.unsplash.com/photo-1500835556837-99ac94a94552?auto=format&fit=crop&w=1800&q=82")
    center/cover no-repeat;
}
.visa-hero-content {
  max-width: 800px;
}

.visa-hero .eyebrow {
  color: #d8ffd8;
}

.visa-hero h1 {
  max-width: 800px;
}

.hero-card,
.service-hero-card {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.92);
  color: var(--wv-dark);
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-card h2,
.service-hero-card h2 {
  color: var(--wv-dark);
  font-size: 1.42rem;
  line-height: 1.2;
}

.hero-card-label {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--wv-green-soft);
  color: var(--wv-green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-checklist,
.form-benefits,
.document-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checklist {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-checklist li,
.form-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #344054;
  font-weight: 700;
}

.hero-checklist i,
.form-benefits i {
  margin-top: 4px;
  color: var(--wv-green);
}

.visa-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.visa-card,
.feature-card,
.coverage-card,
.benefit-card {
  padding: 28px;
}

.icon-badge,
.feature-card i,
.coverage-card i,
.benefit-card i,
.why-card i,
.document-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--wv-green-soft);
  color: var(--wv-green);
  font-size: 1.35rem;
}

.visa-card h3,
.feature-card h3,
.coverage-card h3,
.benefit-card h3,
.why-card h3 {
  margin-bottom: 10px;
  color: var(--wv-dark);
  font-size: 1.18rem;
  line-height: 1.25;
}

.process-section {
  background:
    linear-gradient(180deg, #f2fbf2 0%, #ffffff 100%);
}

.timeline,
.step-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item,
.step-item {
  min-height: 250px;
  border: 1px solid var(--wv-line);
  border-radius: var(--wv-radius);
  background: var(--wv-white);
  box-shadow: var(--wv-shadow-soft);
  padding: 24px;
}

.timeline-marker,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--wv-green);
  color: var(--wv-white);
  font-weight: 900;
}

.destination-grid,
.country-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.destination-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 330px;
  overflow: hidden;
  border-radius: 26px;
  color: var(--wv-white);
  background: var(--wv-dark) center/cover no-repeat;
  box-shadow: var(--wv-shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.destination-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(13, 17, 23, 0.06) 0%, rgba(13, 17, 23, 0.76) 76%),
    linear-gradient(90deg, rgba(15, 155, 15, 0.28), rgba(255, 107, 0, 0.16));
}

.destination-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--wv-shadow);
}

.destination-content {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.destination-content span {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-content h3 {
  color: var(--wv-white);
  font-size: 1.5rem;
  line-height: 1.18;
  margin-bottom: 8px;
}

.destination-content p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0;
}

.destination-dubai {
  background-image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1000&q=80");
}

.destination-singapore {
  background-image: url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=1000&q=80");
}

.destination-thailand {
  background-image: url("https://images.unsplash.com/photo-1508009603885-50cf7c579365?auto=format&fit=crop&w=1000&q=80");
}

.destination-bali {
  background-image: url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1000&q=80");
}

.destination-vietnam {
  background-image: url("https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=1000&q=80");
}

.destination-europe {
  background-image: url("https://images.unsplash.com/photo-1499856871958-5b9627545d1a?auto=format&fit=crop&w=1000&q=80");
}

.document-list,
.docs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.document-item,
.docs-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 90px;
  padding: 18px;
}

.document-item i {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin: 0;
}

.document-item span {
  color: #344054;
  font-weight: 900;
  line-height: 1.34;
}

.why-section {
  background:
    linear-gradient(135deg, var(--wv-green-deep), var(--wv-dark));
  color: var(--wv-white);
}

.why-layout,
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: center;
}

.why-copy .section-kicker,
.why-copy h2,
.why-copy p {
  color: var(--wv-white);
}

.why-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
  color: var(--wv-white);
  padding: 24px;
}

.why-card h3 {
  color: var(--wv-white);
}

.why-card p {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 28px;
}

.rating {
  display: flex;
  gap: 4px;
  color: var(--wv-gold);
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  color: #344054;
  font-size: 1.02rem;
}

.testimonial-card footer {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--wv-dark);
  text-align: left;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--wv-muted);
  font-size: 0.9rem;
}

.visa-form-section {
  background:
    linear-gradient(135deg, #f2fbf2 0%, #ffffff 52%, #fff7ef 100%);
}

.form-copy {
  position: sticky;
  top: 104px;
}

.form-benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.form-benefits li {
  border: 1px solid var(--wv-line);
  border-radius: var(--wv-radius-sm);
  background: var(--wv-white);
  box-shadow: var(--wv-shadow-soft);
  padding: 14px 16px;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(100%, 900px);
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px 22px;
  color: var(--wv-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--wv-green-soft);
  color: var(--wv-green-dark);
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
}

/* Service pages */

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  align-items: center;
  gap: 42px;
  min-height: 72svh;
  padding: 92px max(28px, calc((100% - var(--wv-max)) / 2)) 68px;
  background:
    linear-gradient(90deg, rgba(6, 79, 6, 0.9), rgba(13, 17, 23, 0.48)),
    var(--service-hero-image, url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=82")) center/cover no-repeat;
}

.service-hero-content {
  max-width: 820px;
}

.service-hero-card ul {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-hero-card li {
  display: flex;
  gap: 10px;
  color: #344054;
  font-weight: 800;
}

.service-hero-card i {
  color: var(--wv-green);
  margin-top: 4px;
}

.feature-grid,
.coverage-grid,
.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card p,
.coverage-card p,
.benefit-card p {
  margin-bottom: 0;
}

.service-panel {
  border-radius: 34px;
  background:
    linear-gradient(135deg, var(--wv-green-deep), var(--wv-dark));
  color: var(--wv-white);
  padding: 44px;
  box-shadow: var(--wv-shadow);
}

.service-panel h2,
.service-panel p {
  color: var(--wv-white);
}

.converter-layout,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.converter-card {
  padding: 28px;
}

.converter-result {
  border-radius: 22px;
  background: var(--wv-green-soft);
  color: var(--wv-green-dark);
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
}

.rate-note {
  margin: 10px 0 0;
  font-size: 0.88rem;
  text-align: center;
}

.destination-card-lite {
  overflow: hidden;
}

.destination-card-lite img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-card-lite div {
  padding: 20px;
}

.destination-card-lite h3 {
  margin-bottom: 8px;
  color: var(--wv-dark);
}

/* Blog and article pages */

.blog-card {
  padding-bottom: 20px;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  margin: 2px 20px 0;
  color: var(--wv-green-dark);
  font-weight: 900;
}

.blog-post {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 56px 20px;
}

.blog-post article {
  border: 1px solid var(--wv-line);
  border-radius: 28px;
  background: var(--wv-white);
  box-shadow: var(--wv-shadow-soft);
  padding: clamp(22px, 5vw, 42px);
}

.blog-post article img,
.img-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 22px;
}

.img-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

/* Existing package detail pages */

.package-detail,
.about,
.contact,
.thankyou-container,
.login-box,
.admin-panel,
.partner-form {
  width: min(100% - 32px, 980px);
  margin: 30px auto;
  border: 1px solid var(--wv-line);
  border-radius: 28px;
  background: var(--wv-white);
  box-shadow: var(--wv-shadow-soft);
}

.package-detail,
.thankyou-container,
.login-box,
.admin-panel {
  padding: clamp(22px, 4vw, 38px);
}

.about,
.contact {
  text-align: center;
}

.note-box {
  padding: 18px;
}

.story-book {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--wv-orange);
  color: var(--wv-white);
  box-shadow: 0 16px 34px rgba(255, 107, 0, 0.26);
}

.story-popup {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  background: rgba(13, 17, 23, 0.58);
}

.story-content {
  width: min(90%, 720px);
  max-height: 80vh;
  margin: 60px auto;
  overflow-y: auto;
  border-radius: 28px;
  background: var(--wv-white);
  padding: 28px;
}

.close-btn {
  float: right;
  font-size: 1.7rem;
  font-weight: 900;
  cursor: pointer;
}

/* Footer */

.site-footer,
body > footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(15, 155, 15, 0.22), transparent 28%),
    linear-gradient(135deg, var(--wv-dark), #071307);
  color: var(--wv-white);
}

.site-footer {
  padding: 58px 24px 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px;
  width: min(100%, var(--wv-max));
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--wv-white);
  font-weight: 900;
}

.footer-brand img {
  width: 80px;
  height: 80px;
  border-radius: 0%;
  background: var(--wv-green);
  padding: 0px;
}

.footer-inner h3 {
  color: var(--wv-white);
  margin-bottom: 12px;
}

.footer-inner p,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.footer-list,
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-list {
  flex-direction: column;
}

.footer-links a,
.footer-list a,
body > footer a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-list a:hover,
body > footer a:hover {
  color: #a8ffa8;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.social-icons i {
  color: var(--wv-white);
}

.footer-bottom {
  width: min(100%, var(--wv-max));
  margin: 34px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  text-align: center;
}

body > footer:not(.site-footer) {
  margin-top: 30px;
  padding: 22px 12px;
  text-align: center;
}

body > footer:not(.site-footer) p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 18px;
  background: #25d366;
  color: var(--wv-white);
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.42);
}

/* Animations */

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(255, 107, 0, 0.24);
  }

  50% {
    box-shadow: 0 20px 44px rgba(255, 107, 0, 0.36);
  }
}

.cta-button,
.nav-cta {
  animation: soft-pulse 3.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */

@media (max-width: 1120px) {
  .visa-hero,
  .service-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-card,
  .service-hero-card {
    max-width: 620px;
  }

  .timeline,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .document-list,
  .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: flex;
  }

  .navbar {
    position: sticky;
  }

  .nav-links,
  .menu {
    position: fixed;
    inset: 76px 16px auto 16px;
    z-index: 1001;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100vh - 100px);
    overflow: auto;
    border: 1px solid rgba(15, 155, 15, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--wv-shadow);
    padding: 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .navbar.nav-open .nav-links,
  .navbar.nav-open .menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .menu a {
    justify-content: flex-start;
    border-radius: 16px;
    padding: 12px 14px;
  }

  .floating-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visa-grid,
  .destination-grid,
  .country-grid,
  .testimonial-grid,
  .feature-grid,
  .coverage-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-layout,
  .inquiry-layout,
  .converter-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .form-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section,
  .packages,
  .intl-section,
  .blog-section,
  .about,
  .contact,
  .package-detail,
  .partner-form-wrapper,
  .custom-form-wrapper,
  .why-partner,
  .service-section {
    padding: 62px 18px;
  }

  .hero {
    min-height: 72svh;
    padding: 78px 18px 70px;
  }

  .service-hero,
  .visa-hero {
    padding: 64px 18px 52px;
  }

  .hero-actions,
  .visa-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-actions .cta-button,
  .visa-buttons .btn,
  .visa-buttons .cta-button,
  .visa-buttons .secondary-btn {
    width: 100%;
  }

  .trust-badges,
  .hero-stats,
  .service-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .floating-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -36px;
  }

  .floating-item {
    min-height: 96px;
  }

  .intl-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .visa-grid,
  .destination-grid,
  .country-grid,
  .testimonial-grid,
  .feature-grid,
  .coverage-grid,
  .benefit-grid,
  .why-grid,
  .timeline,
  .step-list,
  .document-list,
  .docs-grid,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .step-item {
    min-height: auto;
  }

  .destination-card {
    min-height: 280px;
  }

  .custom-form,
  .partner-form,
  .inquiry-form,
  .quote-form,
  .visa-inquiry-form {
    padding: 22px;
  }

  .form-field.full,
  .checkbox-field.full {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .navbar {
    min-height: 68px;
    padding: 10px 14px;
  }

  .logo {
    font-size: 0.98rem;
  }

  .logo-icon {
    width: 55px;
    height: 55px;
  }

  .nav-links,
  .menu {
    inset: 68px 10px auto 10px;
  }

  .floating-services {
    width: min(100% - 20px, 1040px);
    padding: 10px;
    gap: 10px;
  }

  .floating-item i,
  .service-card i,
  .intl-item i {
    width: 44px;
    height: 44px;
  }

  .search-container {
    width: min(100% - 20px, 600px);
  }

  .whatsapp-float {
    right: 10px;
    bottom: 10px;
    width: 48px;
    min-height: 48px;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}
.whatsapp-float {
    display: none !important;
}
/* ===========================
   WAVE CARD
=========================== */

/* ===========================
   WAVE CARD
=========================== */

.wave-card{
    max-width:760px;
    width:100%;
    margin:0 auto;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(8,28,58,.12);
}

.wave-banner{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
    background:#fff;
    padding:0;
    margin:0;
    border-radius:24px 24px 0 0;
}

.wave-card .package-badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:10;
}

.wave-card h3{
    font-size:2rem;
    color:#081C3A;
    margin:24px 24px 12px;
}

.wave-card p{
    color:#5B6475;
    line-height:1.8;
    margin:0 24px 18px;
}

.wave-card strong{
    display:block;
    margin:0 24px 20px;
    color:#081C3A;
}

.wave-card button{
    display:block;
    width:calc(100% - 48px);
    margin:0 24px 24px;
    padding:16px;
    border:none;
    border-radius:14px;
    background:#FF7A00;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.wave-card button:hover{
    background:#E66B00;
    transform:translateY(-2px);
}
