:root {
  --green: #089840;
  --green-dark: #056b31;
  --green-soft: #e8f7ee;
  --ink: #14231b;
  --muted: #5c6a63;
  --line: #dce8e1;
  --sky: #eaf6ff;
  --sky-strong: #9bd6ee;
  --gold: #c59741;
  --surface: #ffffff;
  --surface-soft: #f7fbf8;
  --shadow: 0 22px 60px rgba(20, 35, 27, 0.12);
  --shadow-soft: 0 14px 36px rgba(20, 35, 27, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -120px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(8, 152, 64, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green-dark);
  white-space: nowrap;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transform: scale(1.58);
  transform-origin: center;
  clip-path: inset(24% 0 24% 0);
}

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

.site-header .brand {
  min-width: 132px;
}

.site-header .brand span {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #26352d;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.language-select select,
.contact-link {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0 14px;
}

.language-select select {
  min-width: 78px;
  cursor: pointer;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 10px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 740px;
  display: grid;
  align-items: center;
  padding: 84px 0 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 42%, rgba(255, 255, 255, 0.5) 68%, rgba(234, 246, 255, 0.16) 100%),
    url("img/almaty-skyline.jpg") center bottom / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, #fff 5%, rgba(255, 255, 255, 0));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 780px;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.hero-lede {
  max-width: 650px;
  color: #43524a;
  font-size: 1.16rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 34px rgba(8, 152, 64, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(8, 152, 64, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(8, 152, 64, 0.22);
}

.btn-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.26);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 152, 64, 0.18);
  border-radius: 999px;
  color: #28372f;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-proof span.logo-badge {
  padding: 0 8px;
}

.hero-proof span.payment-badge {
  padding: 0 14px;
  gap: 6px;
}

.booking-wrapper {
  width: 100%;
}

.booking-shell {
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  scroll-margin-top: 120px;
}

.booking-iframe {
  width: 100%;
  height: 800px;
  border: none;
  border-radius: 12px;
}

.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.booking-head p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.booking-head span {
  border: 1px solid rgba(8, 152, 64, 0.22);
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.booking-tabs span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.88rem;
}

.booking-tabs .active {
  background: #fff;
  color: var(--green-dark);
  box-shadow: var(--shadow-soft);
}

.booking-placeholder {
  display: grid;
  gap: 12px;
  border: 1px dashed rgba(8, 152, 64, 0.42);
  border-radius: var(--radius);
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(232, 247, 238, 0.58), rgba(234, 246, 255, 0.66)),
    #fff;
}

.placeholder-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.placeholder-field {
  min-height: 74px;
  padding: 13px 14px;
  border: 1px solid rgba(220, 232, 225, 0.98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.placeholder-field span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.placeholder-field strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.placeholder-note {
  min-height: 58px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--green-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  padding: 12px;
}

.placeholder-button {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.trust-strip {
  padding: 18px 0 36px;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid .premium-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(8, 152, 64, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #f8fbf9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-grid .premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8, 152, 64, 0.08);
  border-color: rgba(8, 152, 64, 0.3);
}

.trust-grid .trust-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.6), 0 4px 12px rgba(8, 152, 64, 0.15);
}

.trust-grid .trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-grid h2 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 54px;
  align-items: start;
}

.section-intro p:not(.eyebrow),
.section-header p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.sticky-intro {
  position: sticky;
  top: 112px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  font-weight: 900;
  border-bottom: 2px solid rgba(8, 152, 64, 0.32);
  padding-bottom: 3px;
}

.arrival-panel {
  display: grid;
  gap: 18px;
}

.destination-visual {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: end;
  background:
    linear-gradient(0deg, rgba(12, 39, 24, 0.7), rgba(12, 39, 24, 0.12) 58%, rgba(255, 255, 255, 0.05)),
    url("img/almaty-lake.jpg") center / cover no-repeat;
  color: #fff;
}

.destination-visual div {
  padding: 26px;
  max-width: 520px;
}

.destination-visual span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-weight: 800;
  font-size: 0.8rem;
}

.destination-visual strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.14;
}

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

.route-card,
.steps article,
.fleet-cards article,
.service-grid article,
.pathway-card,
.language-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.route-card {
  padding: 20px;
}

.route-logo {
  margin-bottom: 14px;
  display: block;
}

.route-card p,
.steps p,
.fleet-cards p,
.service-grid p,
.pathway-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-flow {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.booking-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(197, 151, 65, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.booking-flow .section-intro p,
.booking-flow .section-intro h2 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.booking-flow .section-intro .eyebrow {
  color: var(--gold);
}

.booking-path-container {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 50px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.booking-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  position: relative;
  text-align: center;
}

.path-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  animation: fadeUpIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.booking-path .step-1 { animation-delay: 0.1s; }
.booking-path .step-2 { animation-delay: 0.2s; }
.booking-path .step-3 { animation-delay: 0.3s; }
.booking-path .step-4 { animation-delay: 0.4s; order: 6; }
.booking-path .step-5 { animation-delay: 0.5s; order: 5; }
.booking-path .step-6 { animation-delay: 0.6s; order: 4; }

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(197, 151, 65, 0.5);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  animation: pulseGold 3s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(197, 151, 65, 0.4), 0 8px 32px rgba(0, 0, 0, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(197, 151, 65, 0), 0 8px 32px rgba(0, 0, 0, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(197, 151, 65, 0), 0 8px 32px rgba(0, 0, 0, 0.4); }
}

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.path-step:hover .step-img {
  transform: scale(1.15);
}



.path-step:hover .step-icon {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(197, 151, 65, 0.3);
  border-color: rgba(197, 151, 65, 0.9);
  animation: none;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.path-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  max-width: 180px;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.path-step:hover h3 {
  color: var(--gold);
}

.path-step p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 200px;
  line-height: 1.5;
}

/* Animated Premium Dotted Connector */
.step-1::after,
.step-2::after {
  content: "";
  position: absolute;
  top: 60px;
  left: calc(50% + 70px);
  width: calc(100% - 100px);
  height: 2px;
  background-image: linear-gradient(to right, rgba(197, 151, 65, 0.8) 50%, transparent 50%);
  background-size: 16px 100%;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  animation: dashFlowRight 1.5s linear infinite;
}

.step-4::before,
.step-5::before {
  content: "";
  position: absolute;
  top: 60px;
  right: calc(50% + 70px);
  width: calc(100% - 100px);
  height: 2px;
  background-image: linear-gradient(to left, rgba(197, 151, 65, 0.8) 50%, transparent 50%);
  background-size: 16px 100%;
  z-index: 1;
  opacity: 0.5;
  animation: dashFlowLeft 1.5s linear infinite;
}

/* Animated U-turn Connector between 3 and 4 */
.step-3::before {
  content: "";
  position: absolute;
  top: 60px;
  left: calc(50% + 60px);
  width: calc(50% - 60px + 30px);
  height: calc(100% + 60px);
  
  background-image: 
    linear-gradient(to right, rgba(197, 151, 65, 0.8) 50%, transparent 50%),
    linear-gradient(to bottom, rgba(197, 151, 65, 0.8) 50%, transparent 50%),
    linear-gradient(to left, rgba(197, 151, 65, 0.8) 50%, transparent 50%);
  
  background-size: 
    16px 2px,
    2px 16px,
    16px 2px;
    
  background-position: 
    0 0,
    100% 0,
    100% 100%;
    
  background-repeat: 
    repeat-x,
    repeat-y,
    repeat-x;
    
  z-index: 1;
  pointer-events: none;
  animation: dashFlowUTurn 1.5s linear infinite;
}

@keyframes dashFlowUTurn {
  from {
    background-position: 
      0 0,
      100% 0,
      100% 100%;
  }
  to {
    background-position: 
      16px 0,
      100% 16px,
      calc(100% - 16px) 100%;
  }
}

@keyframes dashFlowRight {
  from { background-position: 0 0; }
  to { background-position: 16px 0; }
}

@keyframes dashFlowLeft {
  from { background-position: 0 0; }
  to { background-position: -16px 0; }
}

@keyframes glowPath {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@keyframes glowPathVertical {
  0% { background-position: 0 100%; }
  100% { background-position: 0 -100%; }
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(260px, 0.36fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.fleet-section {
  background: var(--ink);
  color: #fff;
}

.fleet-section .section-header p,
.fleet-section .section-header h2 {
  color: #fff;
}
.fleet-section .eyebrow {
  color: var(--gold);
}

.fleet-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.fleet-cards article {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 22px;
  background: #1e3026;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fleet-cards article:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(197, 151, 65, 0.4);
}

.fleet-cards article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #111;
}

.fleet-cards article > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fleet-cards article h3 {
  color: #fff;
}

.fleet-cards article p {
  color: #a3b8ad;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.spec-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #dce8e1;
  font-size: 0.82rem;
  font-weight: 800;
}

.services-section {
  background:
    linear-gradient(180deg, var(--surface-soft), #fff 65%),
    #fff;
}

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

.service-grid .premium-service-card {
  min-height: 220px;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(8, 152, 64, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.service-grid .premium-service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-grid .premium-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 152, 64, 0.08);
  border-color: rgba(8, 152, 64, 0.2);
}

.service-grid .premium-service-card:hover::before {
  transform: scaleX(1);
}

.premium-service-card.with-image {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-bottom: 1px solid rgba(8, 152, 64, 0.1);
  position: relative;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.europe-section {
  background:
    linear-gradient(110deg, rgba(234, 246, 255, 0.88), rgba(232, 247, 238, 0.82)),
    #fff;
}

.europe-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 44px;
  align-items: center;
}

.language-panel {
  padding: 26px;
}

.language-panel h3 {
  margin-bottom: 18px;
}

.language-list,
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.language-list > span,
.payment-row > span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 12px;
  font-weight: 800;
  gap: 8px;
}

.language-list > span {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: #27372f;
}

.payment-row {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.payment-row span {
  background: #fff7e8;
  border: 1px solid rgba(197, 151, 65, 0.32);
  color: #6c4b11;
}

.partner-section {
  background: #fff;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pathway-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 22px;
}

.pathway-card > span {
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pathway-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-dark);
  font-weight: 900;
}

.pathway-card.highlighted {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.pathway-card.highlighted > span,
.pathway-card.highlighted p,
.pathway-card.highlighted a {
  color: #fff;
}

.pathway-card.highlighted a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.final-cta {
  padding: 82px 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 238, 0.86)),
    var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 34px;
  align-items: center;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 54px 0 24px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-buttons {
  display: flex;
  gap: 8px;
}

.header-btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 24px;
  left: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

@media (max-width: 1080px) {
  .contact-link {
    display: none;
  }

  h1 {
    font-size: 3.35rem;
  }

  .section-grid,
  .europe-layout,
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-copy {
    max-width: 760px;
  }

  .booking-wrapper {
    max-width: 620px;
  }

  .sticky-intro {
    position: static;
  }

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

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

@media (max-width: 860px) {
  .nav-shell {
    min-height: 70px;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--surface-soft);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 66px 0 48px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(232, 247, 238, 0.72) 100%),
      url("img/almaty-skyline.jpg") center / cover no-repeat;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-grid {
    gap: 32px;
  }

  .section,
  .final-cta {
    padding: 70px 0;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .booking-path-container {
    padding: 30px;
  }

  .booking-path {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  
  .booking-path .path-step {
    display: grid !important;
    grid-template-columns: 90px 1fr;
    grid-template-areas:
      "icon title"
      "icon desc";
    gap: 4px 20px;
    align-items: start;
    text-align: left;
    padding: 0;
  }
  
  .booking-path .path-step h3 {
    grid-area: title;
    max-width: none;
    margin-bottom: 0;
    align-self: end;
    font-size: 1.05rem;
  }
  
  .booking-path .path-step p {
    grid-area: desc;
    margin: 0;
    font-size: 0.85rem;
  }
  
  .booking-path .step-icon {
    grid-area: icon;
    margin: 0;
    width: 90px;
    height: 90px;
  }
  
  /* Reset snake order on mobile */
  .booking-path .step-4,
  .booking-path .step-5,
  .booking-path .step-6 {
    order: initial !important;
  }

  /* Hide ALL desktop horizontal/U-turn connectors on mobile */
  .booking-path .path-step::before,
  .booking-path .step-1::after,
  .booking-path .step-2::after,
  .booking-path .step-3::after,
  .booking-path .step-4::after,
  .booking-path .step-5::after,
  .booking-path .step-6::after {
    display: none !important;
    background-image: none !important;
  }
  
  /* Vertical dashed line connecting icons on mobile */
  .booking-path .path-step:not(.step-6)::after {
    display: block !important;
    content: "";
    position: absolute;
    left: 44px; /* Center of 90px icon */
    top: 90px;
    width: 3px;
    height: calc(100% - 90px + 32px); /* Span to next icon */
    background: linear-gradient(180deg, rgba(197, 151, 65, 0.1), rgba(197, 151, 65, 0.5), rgba(197, 151, 65, 0.1));
    background-size: 100% 200%;
    animation: glowPathVertical 3s linear infinite;
    z-index: -1;
    pointer-events: none;
  }

  .step-6::after {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .language-select select {
    min-width: 68px;
    padding: 0 10px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .booking-shell {
    padding: 16px;
  }

  .booking-iframe {
    height: 1050px;
  }

  .placeholder-row,
  .trust-grid,
  .route-grid,
  .booking-path,
  .fleet-cards,
  .service-grid,
  .pathway-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .destination-visual {
    min-height: 330px;
  }

  .destination-visual strong {
    font-size: 1.35rem;
  }

  .fleet-cards article,
  .service-grid article,
  .pathway-card {
    min-height: auto;
  }

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

.final-cta {
  background: var(--surface);
  padding: 80px 0;
  text-align: left;
  border-top: 1px solid var(--line);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-map-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 2.67 / 1;
  perspective: 1200px;
}

.map-3d-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotateX(45deg) rotateZ(-10deg) scale(1.5);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.map-container:hover .map-3d-wrapper {
  transform: rotateX(40deg) rotateZ(-5deg) scale(1.55);
}

.kz-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0px 25px 30px rgba(4, 63, 27, 0.4)) drop-shadow(0px 5px 10px rgba(0,0,0,0.3));
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(40px) rotateZ(10deg) rotateX(-45deg) translateY(-15px);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(197, 151, 65, 0.6);
}

.map-pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: radarPulse 2s ease-out infinite;
  pointer-events: none;
}

.map-pin span {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-pin:hover span {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

@keyframes radarPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

@media (max-width: 900px) {
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .map-container {
    aspect-ratio: 1.5 / 1;
  }
  
  .map-3d-wrapper {
    transform: rotateX(45deg) rotateZ(-10deg) scale(1.1);
  }
  
  .map-container:hover .map-3d-wrapper {
    transform: rotateX(40deg) rotateZ(-5deg) scale(1.15);
  }
  
  .map-pin {
    transform: translate(-50%, -50%) translateZ(12px) rotateZ(10deg) rotateX(-45deg) translateY(-5px);
  }
}
