:root {
  --page: #f6f8f5;
  --surface: #ffffff;
  --surface-soft: #eef5ef;
  --ink: #17231f;
  --muted: #64746e;
  --line: #dbe4df;
  --brand: #0f766e;
  --brand-dark: #0b4f4a;
  --accent: #f97316;
  --accent-soft: #fff3e8;
  --shadow: 0 18px 50px rgba(22, 36, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 18px;
}

.nav-shell,
.mobile-nav {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 35px rgba(22, 36, 31, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 64px;
  border-radius: 8px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 850;
  letter-spacing: 0;
}

.brand svg path {
  stroke: var(--brand);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #475851;
  font-size: 0.95rem;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.18s ease, background 0.18s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--brand);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 750;
  letter-spacing: 0;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.22);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button-ghost:hover {
  background: #fff;
  color: var(--brand-dark);
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
}

.language {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--surface);
  color: var(--ink);
}

.chevron {
  line-height: 1;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.language-menu button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 9px 10px;
  background: transparent;
  color: inherit;
  text-align: left;
}

.language-menu button:hover,
.language-menu button.active {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.mobile-actions,
.mobile-nav {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  display: grid;
  place-items: center;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.menu-toggle span + span {
  margin-top: -12px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  margin-top: 8px;
  border-radius: 8px;
  padding: 12px;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 32, 29, 0.88) 0%, rgba(10, 32, 29, 0.66) 42%, rgba(10, 32, 29, 0.22) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=2200&auto=format&fit=crop") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(to bottom, rgba(246, 248, 245, 0), var(--page));
  pointer-events: none;
}

.grid-overlay::before,
.spot {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 94svh;
  padding-top: 132px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: 34px;
}

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

h1 {
  font-size: clamp(2.8rem, 6.8vw, 5.4rem);
  line-height: 0.98;
  font-weight: 900;
  max-width: 820px;
}

h1 strong {
  display: block;
  color: #ffcc8a;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  font-weight: 850;
  color: var(--ink);
}

h3 {
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero-copy > p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.section-copy,
.section-head p,
.info-row p,
.testimonial-card p,
.why-card p,
.payment-card p {
  color: var(--muted);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  align-self: center;
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(7, 24, 21, 0.28);
  backdrop-filter: blur(16px);
}

.hero-panel-head span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--accent-soft);
  color: #b45309;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-panel h2 {
  font-size: 1.55rem;
  line-height: 1.15;
}

.hero-panel p {
  margin-top: 8px;
  color: var(--muted);
}

.hero-panel .lead-form {
  margin-top: 20px;
}

.stats {
  width: min(100%, 700px);
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0;
}

.stats > div {
  min-width: 0;
  min-height: 92px;
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  text-align: center;
}

.stats strong {
  display: block;
  color: #ffcc8a;
  font-size: 1.6rem;
}

.stats span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.section {
  position: relative;
  padding: 88px 0;
}

#about,
#why,
#certificate {
  background: var(--page);
}

#dest,
#payments,
#testi,
#cta {
  background: var(--surface);
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 52px;
}

.section-copy {
  margin-top: 18px;
  max-width: 680px;
  font-size: 1.02rem;
}

.feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-card,
.why-card,
.testimonial-card,
.payment-card,
.glass-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(22, 36, 31, 0.08);
}

.feature-card {
  min-height: 106px;
  padding: 18px;
}

.feature-card strong {
  display: block;
  color: var(--ink);
}

.feature-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-head {
  max-width: 720px;
}

.section-head.centered {
  margin: 0 auto;
  text-align: center;
}

.section-head p {
  margin-top: 10px;
  font-size: 1.02rem;
}

.destination-grid,
.why-grid,
.testimonial-grid,
.payment-grid {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}

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

.destination-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
  background: #10251f;
  box-shadow: 0 14px 34px rgba(22, 36, 31, 0.12);
}

.destination-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.destination-card:hover img {
  transform: scale(1.045);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6, 18, 15, 0.76), rgba(6, 18, 15, 0.08) 68%);
}

.destination-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px;
  color: #fff;
}

.destination-card strong {
  display: block;
  font-size: 1.22rem;
}

.destination-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

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

.why-card,
.testimonial-card {
  min-height: 150px;
  padding: 22px;
}

.why-card {
  background: linear-gradient(180deg, #fff, #f7fbf8);
}

.why-card p,
.testimonial-card p,
.payment-card p {
  margin-top: 8px;
}

.payment-card {
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.payment-logo {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.payment-logo img {
  max-width: 64px;
  max-height: 42px;
}

.payment-card .button {
  margin-top: 14px;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.9rem;
  box-shadow: none;
}

.payme-button {
  background: #10a37f;
  color: #fff;
}

.click-button {
  background: #1687c9;
  color: #fff;
}

.certificate-wrap {
  margin-top: 36px;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.certificate-preview {
  display: block;
  width: min(100%, 920px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f1f4f2;
  padding: clamp(8px, 1.4vw, 14px);
  box-shadow: var(--shadow);
}

.certificate-preview img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #fff;
}

.certificate-link {
  border-radius: 8px;
}

.glass-panel {
  padding: 28px;
}

.info-list,
.lead-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--brand);
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  padding: 14px 15px;
  background: #fbfcfb;
  color: var(--ink);
}

.lead-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.lead-form .button {
  width: 100%;
}

.form-status {
  color: var(--brand-dark);
  background: var(--surface-soft);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 700;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.28);
}

.floating-call span {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
}

.footer {
  padding: 38px 0;
  color: #d5e1dc;
  background: #10231f;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer a {
  color: #ffcc8a;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 92svh;
    padding-top: 130px;
  }

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

  .certificate-preview {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    min-height: 58px;
    padding: 8px 10px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .language-code {
    display: none;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-grid {
    min-height: 92svh;
    padding-top: 112px;
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .feature-grid,
  .destination-grid,
  .why-grid,
  .testimonial-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 8px;
  }

  .stats > div {
    min-height: 78px;
    padding: 14px;
  }

  .section {
    padding: 68px 0;
  }

  .destination-card,
  .destination-card img {
    min-height: 250px;
    height: 250px;
  }

  .payment-card {
    align-items: flex-start;
  }

  .glass-panel {
    padding: 22px;
  }

  .certificate-preview {
    padding: 8px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-call {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: center;
  }
}
