﻿:root {
  --bg: #070a08;
  --panel: #0c100e;
  --panel-soft: rgba(10, 14, 12, 0.88);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f8f4eb;
  --muted: #d0c9bb;
  --gold: #d7a641;
  --green: #358b3f;
  --green-strong: #2f7d39;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 166, 65, 0.08), transparent 22%),
    linear-gradient(180deg, #050706 0%, #090c0a 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(4, 6, 6, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.header-spacer {
  height: 148px;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: #040606;
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
}

.topbar-item {
  margin: 0;
  color: #ede5d7;
  font-size: 0.96rem;
}

.topbar-item.whatsapp {
  color: #d5ead7;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #f5efe4;
  cursor: pointer;
}

.lang.active,
.lang:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.flag {
  width: 14px;
  height: 9px;
  border-radius: 2px;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.flag.tr {
  background: linear-gradient(180deg, #d72828 0%, #c62020 100%);
}

.flag.ru {
  background: linear-gradient(180deg, #ffffff 0 33%, #255dcf 33% 66%, #d73737 66% 100%);
}

.flag.en {
  background: linear-gradient(135deg, #123a84, #d73434);
}

.flag.tm {
  background: linear-gradient(90deg, #1d8a39 0 65%, #b61d2b 65% 100%);
}

.hero {
  position: relative;
  background: #090c0a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-clean.png") center top / cover no-repeat;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 8, 0.35) 0%, rgba(6, 8, 8, 0.05) 20%, rgba(6, 8, 8, 0.68) 100%),
    linear-gradient(90deg, rgba(7, 10, 9, 0.08) 0%, rgba(7, 10, 9, 0) 45%, rgba(7, 10, 9, 0.12) 100%);
}

.navbar,
.hero-stage,
.feature-strip,
.cards-section {
  position: relative;
  z-index: 1;
}

.navbar {
  padding: 8px 0;
  background: rgba(5, 7, 7, 0.92);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.brand-icon {
  width: 132px;
  height: 150px;
  display: grid;
  place-items: center;
  color: var(--gold);
  flex: 0 0 132px;
}

.brand-icon img {
  width: 108%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  color: #f5ebd9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand-copy small {
  color: #efe2ca;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 46px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a.active {
  color: #43a549;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: #43a549;
}

.reservation-button {
  padding: 18px 30px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-strong) 100%);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 -10px 22px rgba(0, 0, 0, 0.14);
}

.mobile-menu {
  display: none;
  position: relative;
  z-index: 30;
}

.mobile-menu.is-open {
  z-index: 2100;
}

.mobile-menu-button {
  appearance: none;
  -webkit-appearance: none;
  width: 54px;
  height: 54px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(12, 15, 14, 0.92);
  cursor: pointer;
  list-style: none;
  position: relative;
  z-index: 2101;
  touch-action: manipulation;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #f5efe4;
}

.mobile-menu-panel {
  display: none;
  position: fixed;
  top: 82px;
  left: 12px;
  right: 12px;
  bottom: auto;
  min-width: 0;
  z-index: 9999;
  pointer-events: auto;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(8, 11, 10, 0.98);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-panel a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



.mobile-menu.is-open .mobile-menu-panel {
  display: grid;
}

.mobile-language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.hero-language-strip {
  display: none;
  position: relative;
  z-index: 2;
}

.hero-language-switcher {
  width: fit-content;
  margin: 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 11, 10, 0.92);
}

.mobile-nav-language {
  display: none;
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-stage {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 24px;
}

.search-panel {
  width: min(1130px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 0.9fr 0.9fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(65, 164, 82, 0.45);
  border-radius: 26px;
  background: rgba(9, 12, 11, 0.96);
  box-shadow: var(--shadow);
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(12, 15, 15, 0.82);
}

.search-label {
  color: #a6ac9f;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.search-field select,
.search-field input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.search-field input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
}

.search-button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #3c9c45 0%, #2c7f35 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.feature-strip {
  margin-top: -2px;
  background: linear-gradient(180deg, rgba(8, 10, 10, 0.98), rgba(8, 10, 10, 0.94));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 0;
}

.feature-item {
  display: flex;
  gap: 18px;
  padding: 0 26px;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 2px solid rgba(65, 164, 82, 0.7);
  border-radius: 18px;
  color: #59bf5f;
  font-weight: 800;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #ffffff;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cards-section {
  padding: 28px 0 48px;
  background: linear-gradient(180deg, #090b0a 0%, #050706 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #121614;
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.03);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.04) 6%, rgba(5, 8, 7, 0.58) 56%, rgba(5, 8, 7, 0.95) 100%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.08) 0%, rgba(5, 8, 7, 0) 45%, rgba(5, 8, 7, 0.14) 100%);
}

.service-card-plane::before {
  background-image:
    linear-gradient(135deg, rgba(56, 103, 171, 0.2), rgba(10, 15, 20, 0.04)),
    url("assets/hero-clean.png");
  background-position: center, 22% 54%;
  background-size: cover, 230% auto;
}

.service-card-transfer::before {
  background-image:
    radial-gradient(circle at 70% 28%, rgba(255, 214, 136, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(48, 54, 58, 0.22), rgba(11, 13, 14, 0.08)),
    url("assets/hero-clean.png");
  background-position: center, center, 56% 62%;
  background-size: cover, cover, 220% auto;
}

.service-card-comfort::before {
  background-image:
    linear-gradient(135deg, rgba(245, 175, 71, 0.18), rgba(18, 20, 20, 0.02)),
    url("assets/hero-clean.png");
  background-position: center, 78% 54%;
  background-size: cover, 220% auto;
}

.service-card-support::before {
  background-image:
    radial-gradient(circle at 72% 24%, rgba(79, 148, 103, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(80, 92, 97, 0.22), rgba(12, 15, 15, 0.08)),
    url("assets/hero-clean.png");
  background-position: center, center, 86% 48%;
  background-size: cover, cover, 240% auto;
}

.card-badge,
.card-copy {
  position: relative;
  z-index: 1;
}

.card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(53, 139, 63, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-copy {
  width: 100%;
  padding: 26px 22px 22px;
}

.card-copy h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.card-copy p {
  margin: 0;
  color: #ddd5c9;
  line-height: 1.55;
  max-width: 28ch;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #4bda72, #1d9a4a);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(7, 88, 34, 0.45);
}

.inner-page {
  background:
    radial-gradient(circle at top left, rgba(215, 166, 65, 0.08), transparent 18%),
    linear-gradient(180deg, #060807 0%, #0a0d0b 100%);
}

.inner-navbar {
  position: relative;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background:
    linear-gradient(180deg, rgba(8, 11, 10, 0.78), rgba(8, 11, 10, 0.9)),
    url("assets/hero-clean.png") center center / cover no-repeat;
}

.page-hero-services {
  background:
    linear-gradient(180deg, rgba(8, 11, 10, 0.78), rgba(8, 11, 10, 0.9)),
    linear-gradient(120deg, rgba(58, 123, 67, 0.18), rgba(8, 11, 10, 0.1)),
    url("assets/hero-clean.png") center center / cover no-repeat;
}

.page-hero-contact {
  background:
    linear-gradient(180deg, rgba(8, 11, 10, 0.78), rgba(8, 11, 10, 0.9)),
    linear-gradient(120deg, rgba(215, 166, 65, 0.16), rgba(8, 11, 10, 0.08)),
    url("assets/hero-clean.png") center center / cover no-repeat;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}

.page-hero p:last-child {
  margin: 18px 0 0;
  max-width: 58ch;
  color: #e4ddd0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-tag {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.content-section {
  padding: 42px 0 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 20px;
  align-items: stretch;
}

.timeline-grid,
.service-list-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.content-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 20, 18, 0.92), rgba(10, 13, 12, 0.98));
  box-shadow: var(--shadow);
}

.content-card h2,
.content-card h3 {
  margin: 0 0 14px;
  color: #fff;
}

.content-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
}

.content-card h3 {
  font-size: 1.4rem;
}

.content-card p,
.content-card span {
  color: var(--muted);
  line-height: 1.8;
}

.large-card {
  min-height: 100%;
}

.stat-card {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 220px;
}

.stat-card strong {
  color: #fff;
  font-size: 2.5rem;
}

.service-detail {
  min-height: 100%;
}

.cta-panel {
  margin-top: 24px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(65, 164, 82, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 20, 18, 0.96), rgba(9, 13, 11, 0.98));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 60ch;
}

.contact-card h3 {
  word-break: break-word;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: #66c86a;
  font-weight: 700;
}

.premium-section,
.authority-section,
.reason-section,
.service-highlight {
  margin-top: 24px;
}

.premium-grid,
.reasons-grid,
.solution-grid,
.location-section {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.premium-grid,
.reasons-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compact-card p {
  margin: 0;
}

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

.location-section {
  grid-template-columns: 1.4fr 0.8fr;
}

.solution-card {
  min-height: 100%;
}

.solution-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(53, 139, 63, 0.12);
  border: 1px solid rgba(65, 164, 82, 0.28);
  font-size: 1.5rem;
}

.map-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.map-frame {
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.location-info-card h3 {
  margin: 0 0 12px;
}

.site-footer {
  padding: 34px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 11, 10, 0.98), rgba(5, 7, 6, 1));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr;
  gap: 26px;
  align-items: start;
}

.footer-brand h3,
.footer-column h4 {
  margin: 0 0 14px;
  color: #fff;
}

.footer-brand h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.footer-brand p,
.footer-column a,
.footer-column span,
.footer-bottom p {
  color: var(--muted);
  line-height: 1.8;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  width: 20px;
  flex: 0 0 20px;
  color: var(--gold);
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 1180px) {
  .navbar-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 26px;
  }

  .search-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-button {
    min-height: 58px;
    grid-column: span 2;
  }

  .feature-grid,
  .cards-grid,
  .timeline-grid,
  .service-list-grid,
  .contact-grid,
  .premium-grid,
  .reasons-grid,
  .solution-grid,
  .location-section,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-column: 1 / -1;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 991px) {
  .header-spacer {
    height: 86px;
  }

  .topbar {
    display: none;
  }

  .nav-links,
  .reservation-button {
    display: none;
  }

  .mobile-menu {
    display: block;
    flex: 0 0 auto;
  }

  .mobile-nav-language {
    display: flex;
    justify-content: center;
    padding: 20px 0 10px;
  }

  .mobile-menu-panel {
    top: 88px;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .brand {
    flex-direction: row;
    text-align: left;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-copy strong {
    white-space: normal;
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.7rem;
  }

  .brand-icon {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .brand-icon img {
    width: 130%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1360px);
  }

  .hero-diagonal {
    display: none;
  }

  .hero-stage {
    min-height: 340px;
    padding-bottom: 18px;
  }

  .search-panel,
  .feature-grid,
  .cards-grid,
  .about-grid,
  .timeline-grid,
  .service-list-grid,
  .contact-grid,
  .premium-grid,
  .reasons-grid,
  .solution-grid,
  .location-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .search-button {
    grid-column: auto;
  }

  .page-hero {
    padding: 120px 0 78px;
  }

  .content-section {
    padding: 28px 0 46px;
  }

  .content-card,
  .cta-panel {
    padding: 22px;
  }

  .feature-item {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 240px;
  }

  .floating-whatsapp {
    width: 76px;
    height: 76px;
    right: 14px;
    bottom: 14px;
    font-size: 1.45rem;
  }
}
