* {
  box-sizing: border-box;
}

:root {
  --primary: #26A69A;
  --primary-dark: #1E9E92;
  --text: #121212;
  --muted: #6d7280;
  --bg: #ffffff;
  --card: #ffffff;
  --soft: #f6f7fb;
  --line: rgba(20, 20, 20, 0.08);
  --shadow: 0 18px 40px rgba(28, 31, 42, 0.12);
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: #fff;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input { font: inherit; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 72px 0; }
.center { text-align: center; }
.section-heading h2, .hero-content h1, .ticket-banner h2, .newsletter h2 { margin: 0; }
.section-heading p { color: var(--muted); max-width: 720px; margin: 12px auto 0; }
.section-heading.center { margin-bottom: 28px; }
.testimonials .section-heading h2 { font-size: clamp(38px, 4vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }

.works { position: relative; background: #fff; }
.works .section-heading.center { margin-bottom: 54px; }
.works .section-heading h2 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.works .section-heading p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
}
.works .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.works .step-card {
  background: #dceef7;
  border-radius: 10px;
  min-height: 170px;
  padding: 20px 18px 18px;
  box-shadow: none;
}
.works .step-card i {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 17px;
  margin-bottom: 16px;
}
.works .step-card h3 { font-size: 16px; margin-bottom: 10px; font-weight: 700; }
.works .step-card p { font-size: 13px; line-height: 1.65; color: #5f6772; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav-wrap {
  min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: #1877b7; }
.logo-image { height: 42px; width: auto; display: block; object-fit: contain; }
.main-nav { display: flex; gap: 26px; color: #6b6f7c; font-weight: 500; }
.main-nav a.active, .main-nav a:hover { color: var(--primary); }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: #b56; font-size: 14px; }
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switch-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #fff;
  color: #334;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
}
.lang-switch-trigger i:first-child {
  font-size: 12px;
}
.lang-switch-trigger i:last-child {
  font-size: 10px;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  z-index: 30;
}
.lang-switch.open .lang-menu {
  display: grid;
}
.lang-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #445;
  font-size: 14px;
}
.lang-menu a:hover {
  background: #f5f7fb;
  color: var(--primary);
}
.mobile-nav-toggle, .mobile-nav, .mobile-nav-overlay, .mobile-nav-header, .mobile-nav-links, .mobile-nav-footer { display: none; }

.hero {
  padding: 24px 0 0;
}
.hero-inner {
  position: relative;
  min-height: 450px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(12,32,59,.88), rgba(14,33,59,.48)), url('../images/index/1.jpg') center/cover;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.hero-content { width: 100%; max-width: 960px; padding: 56px 56px 80px; color: #fff; text-align: center; }
.hero-content .btn { margin-inline: auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: #8fe0d8; margin-bottom: 14px; }
.eyebrow.light { color: rgba(255,255,255,.8); }
.hero-content h1 { font-size: clamp(38px, 5vw, 62px); line-height: 1.05; margin-bottom: 18px; }
.hero-text { max-width: 420px; margin: 0 auto 28px; color: rgba(255,255,255,.8); line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 14px 26px; font-weight: 700; border: 0; cursor: pointer;
}
.btn-primary { background: linear-gradient(180deg,var(--primary),var(--primary-dark)); color: #fff; box-shadow: 0 10px 25px rgba(38,166,154,.35); }
.btn-secondary, .btn-light { padding: 11px 18px; font-size: 14px; }
.btn-secondary { background: linear-gradient(180deg,#2bb2a5,#1E9E92); color: #fff; }
.btn-light { background: #fff; color: #223; }
.small { padding: 10px 18px; font-size: 14px; }

.search-bar {
  margin-top: -42px;
  position: relative;
  z-index: 3;
  width: min(100% - 192px, 960px);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.search-highlight {
  display: grid;
  align-items: center;
  padding: 14px 12px;
  border-radius: 14px;
  background: #fbfcfe;
  border: 1px solid rgba(0,0,0,.05);
}
.search-highlight span { color: #223; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; justify-content: center; text-align: center; }


.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.step-card {
  background: linear-gradient(180deg,#eaf7ff,#dceefb);
  padding: 24px 18px; border-radius: 14px; text-align: center; position: relative; min-height: 200px;
}
.step-card i { width: 46px; height: 46px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 12px; background: #1696d2; color: #fff; font-size: 18px; }
.step-card h3 { margin: 0 0 10px; font-size: 17px; }
.step-card p { margin: 0; color: #5f6a78; line-height: 1.6; font-size: 14px; }

.cards-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.image-card {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}
.flight-card { background-image: url('../images/index/3.avif'); }
.hotel-card { background-image: url('../images/index/2.avif'); }
.overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.7)); }
.feature-copy { position: absolute; inset: auto 0 0; padding: 28px; color: #fff; z-index: 1; text-align: center; min-height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.feature-copy h3 { font-size: 36px; margin: 0 0 8px; }
.feature-copy p { margin: 0 auto 18px; max-width: 280px; color: rgba(255,255,255,.86); }

.tabs { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.tab { background: transparent; border: 0; color: #69717f; cursor: pointer; font-weight: 600; }
.tab.active { color: var(--primary); }
.destination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.destination-card, .testimonial-card { background: #fff; border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; }
.destination-card img { height: 200px; width: 100%; object-fit: cover; }
.destination-body { padding: 16px; }
.meta-row, .price-row, .author { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.tag, .rating { font-size: 12px; color: #6c7481; }
.destination-body h3 { margin: 10px 0 6px; font-size: 18px; }
.destination-body p, .testimonial-card p { color: var(--muted); margin: 0; }
.price-row { margin-top: 16px; }
.price-row strong { color: #1696d2; font-size: 20px; }
.price-row a { color: #556; font-size: 13px; }

#destinations {
  padding-top: 86px;
  padding-bottom: 78px;
}
#destinations .section-heading.center {
  margin-bottom: 34px;
}
#destinations .section-heading h2,
#video .section-heading h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
#destinations .tabs {
  gap: 44px;
  margin-top: 18px;
}
#destinations .tab {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
  color: #4a4a4a;
  position: relative;
}
#destinations .tab.active {
  color: #26A69A;
  text-decoration: underline;
  text-underline-offset: 8px;
}
#destinations .destination-grid,
#video .destination-grid {
  gap: 28px;
}
#destinations .destination-card,
#video .destination-card {
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(29, 32, 44, 0.08);
  padding: 12px;
  overflow: visible;
}
#destinations .destination-image-wrap,
#video .destination-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
#destinations .destination-card img,
#video .destination-card img {
  height: 270px;
  border-radius: 14px;
}
#destinations .fav-btn,
#video .fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
#destinations .fav-btn i,
#video .fav-btn i {
  font-size: 14px;
  line-height: 1;
}
#destinations .destination-body,
#video .destination-body {
  padding: 14px 4px 8px;
}
#destinations .meta-row,
#video .meta-row {
  margin-bottom: 8px;
}
#destinations .tag,
#video .tag {
  color: #149bd8;
  font-size: clamp(12px, 0.8vw, 14px);
  font-weight: 600;
}
#destinations .rating,
#video .rating {
  color: #222;
  font-weight: 700;
  font-size: clamp(12px, 0.9vw, 14px);
}
#destinations .rating i,
#video .rating i {
  color: #26A69A;
  font-size: .9em;
}
#destinations .destination-body h3,
#video .destination-body h3 {
  margin: 10px 0 8px;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.2;
}
#destinations .destination-body p,
#video .destination-body p {
  color: #5d5f66;
  font-size: clamp(12px, .9vw, 14px);
}
#destinations .price-row {
  margin-top: 16px;
}
#destinations .price-row strong {
  color: #129edc;
  font-size: clamp(22px, 1.4vw, 24px);
  font-weight: 700;
}
#destinations .price-row a {
  color: #37393f;
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
#destinations .center,
#video .center {
  margin-top: 38px;
}
#destinations .btn-primary.small,
#video .btn-primary.small {
  min-width: 136px;
  height: 46px;
  padding: 0 22px;
  font-size: clamp(13px, 1vw, 15px);
}

.ticket-banner { padding-top: 12px; padding-inline: 0; }
.ticket-banner .banner-bg {
  background: linear-gradient(90deg, rgba(10,42,82,.9), rgba(15,60,110,.82)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.banner-inner {
  min-height: 375px; padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #fff; overflow: hidden;
}
.banner-inner h2 { font-size: clamp(28px, 4vw, 44px); max-width: 420px; margin-bottom: 18px; }
.banner-bg { width: 100%; }
.banner-collage { display: flex; align-items: flex-end; gap: 16px; }
.banner-collage img { width: 155px; height: 195px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.banner-collage img:nth-child(2) { transform: translateY(-18px); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { padding: 18px; }
.author { margin-top: 22px; justify-content: flex-start; }
.author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.author span { display: block; color: var(--muted); font-size: 13px; }

.offers { padding-top: 86px; }
.offers .section-heading h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}
.offers-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.offers-controls { display: flex; gap: 12px; flex-shrink: 0; }
.offers-nav {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid #9edfd8;
  display: grid; place-items: center; cursor: pointer; background: #fff; color: #26A69A;
  box-shadow: 0 8px 18px rgba(38, 166, 154, 0.22);
}
.offers-nav-solid { background: linear-gradient(180deg, var(--primary), var(--primary-dark)); color: #fff; border-color: transparent; }
.offers-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; overflow: hidden; }
.offer-card {
  background: #fff; border-radius: 16px; border: 1px solid #d7d7d7; box-shadow: 0 10px 24px rgba(29, 32, 44, 0.08); overflow: hidden;
}
.offer-image-wrap { padding: 12px 12px 0; }
.offer-image-wrap img { width: 100%; height: 170px; object-fit: cover; border-radius: 12px; }
.offer-body { padding: 14px 14px 16px; }
.offer-top-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.offer-top-row h3 { margin: 0; font-size: clamp(16px, 1.15vw, 20px); line-height: 1.2; }
.offer-top-row .rating { font-size: clamp(14px, 1vw, 18px); color: #3d3d3d; font-weight: 600; white-space: nowrap; }
.offer-top-row .rating i { color: #26A69A; margin-right: 4px; }
.offer-duration { margin: 8px 0 14px; color: #8a8f98; font-size: clamp(12px, .9vw, 14px); }
.offer-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 8px; text-align: center; margin-bottom: 14px; }
.offer-features div { display: grid; justify-items: center; gap: 6px; color: #777; font-size: 11px; }
.offer-features i { font-size: 20px; color: #7a7a7a; }
.offer-points { margin: 0 0 14px; padding-left: 18px; color: #9a9a9a; font-size: clamp(12px, .9vw, 14px); line-height: 1.5; }
.offer-points li + li { margin-top: 4px; }

.newsletter-inner {
  position: relative;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 18, 28, 0.42), rgba(9, 18, 28, 0.72)), url('../images/index/16.jpg') center/cover;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.newsletter-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.2); }
.newsletter-content { position: relative; z-index: 1; width: min(760px, calc(100% - 32px)); text-align: center; }
.newsletter-content h2 {
  margin: 0 auto 22px;
  max-width: 700px;
  font-size: clamp(32px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.newsletter-action { display: flex; justify-content: center; }
.newsletter-action .btn-primary { height: 44px; padding: 0 28px; font-size: 14px; box-shadow: 0 10px 20px rgba(38, 166, 154, .45); }

.site-footer { background: #050505; color: rgba(255,255,255,.82); padding-top: 52px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-bottom: 30px; }
.footer-grid h3 { color: #fff; margin-top: 0; }
.footer-grid a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: #fff; }
.footer-grid p { color: rgba(255,255,255,.72); line-height: 1.8; margin-top: 0; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.socials a:hover { background: rgba(255,255,255,.12); }
.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-image { height: 46px; }

.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,.08); padding: 16px; font-size: 13px; color: rgba(255,255,255,.55); }

.page-hero {
  padding: 42px 0 0;
}
.footer-message-form {
  display: grid;
  gap: 10px;
}
.footer-message-form input,
.footer-message-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  outline: 0;
}
.footer-message-form .iti { width: 100%; }
.footer-message-form .iti__selected-flag {
  border-radius: 12px 0 0 12px;
  background: rgba(255,255,255,.08);
}
.footer-message-form .iti__country-list {
  z-index: 9999;
  background: #fff;
  color: #223;
}
.footer-message-form .iti__country {
  color: #223;
}
.footer-message-form .iti__country-name,
.footer-message-form .iti__dial-code {
  color: #223 !important;
}
.footer-message-form .iti__highlight {
  color: #223;
}
.footer-message-form .iti__country:hover {
  background: #f5f7fb;
}
.footer-message-form input::placeholder,
.footer-message-form textarea::placeholder { color: rgba(255,255,255,.5); }
.footer-message-form .phone-error-message { color: #ffb1b1; font-size: 12px; min-height: 16px; }
.page-hero-inner {
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 64px 24px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 42, .66), rgba(10, 24, 42, .5));
}
.page-hero-inner > * { position: relative; z-index: 1; }
.page-hero-inner h1 { margin: 0 0 14px; font-size: clamp(42px, 5vw, 64px); line-height: 1.05; }
.page-hero-inner p { max-width: 820px; margin: 0; color: rgba(255,255,255,.86); line-height: 1.7; }
.page-hero-guide .page-hero-inner { background-image: url('../images/index/17.avif'); }
.page-hero-travel .page-hero-inner { background-image: url('../images/index/18.avif'); }
.page-hero-video .page-hero-inner { background-image: url('../images/index/19.avif'); }
.page-hero-contact .page-hero-inner { background-image: url('../images/index/20.avif'); }
.page-hero-about .page-hero-inner { background-image: url('../images/index/21.avif'); }
.license-grid, .photo-wall, .video-gallery, .contact-layout, .about-story { display: grid; gap: 24px; }
.license-grid { grid-template-columns: repeat(2, 1fr); }
.license-card, .contact-info-panel, .about-copy, .about-media { background: #fff; border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.license-card img, .about-media img { width: 100%; height: auto; display: block; }
.photo-wall { grid-template-columns: repeat(3, 1fr); }
.photo-wall img { width: 100%; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.video-gallery { grid-template-columns: repeat(3, 1fr); }
.video-gallery video { width: 100%; height: 260px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); background: #000; }
.contact-layout { grid-template-columns: 1fr; align-items: start; }
.contact-info-panel { padding: 28px; }
.contact-info-panel h2, .about-copy h2 { margin-top: 0; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid rgba(0,0,0,.06); }
.contact-item:first-of-type { border-top: 0; }
.contact-item i { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: #eaf7ff; color: #149bd8; flex-shrink: 0; }
.contact-item span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 4px; }
.contact-item strong, .contact-item a { color: #223; }
.about-story { grid-template-columns: 1fr; align-items: start; }
.about-copy, .about-media { padding: 28px; }
.about-copy p { color: var(--muted); line-height: 1.9; }
.about-copy { order: 1; }
.about-media { order: 2; }

@media (max-width: 1024px) {
  .main-nav, .nav-phone, .lang-switch { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .hero-inner { min-height: 380px; }
  .steps, .destination-grid, .testimonial-grid, .offers-row, .license-grid, .photo-wall, .video-gallery, .footer-grid { grid-template-columns: 1fr; }
  .works .steps { grid-template-columns: 1fr; }
  .steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .offers-header { align-items: center; }
  .cards-two { grid-template-columns: 1fr; }
  .banner-inner, .newsletter-inner { grid-template-columns: 1fr; display: grid; }
  .banner-collage { justify-content: center; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .nav-wrap { gap: 12px; }
  .hero-content { width: 100%; padding: 36px 24px 70px; }
  .page-hero-inner h1 { font-size: clamp(32px, 8vw, 44px); }
  .search-bar, .destination-grid, .testimonial-grid, .offers-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .step-card { min-height: auto; padding: 20px 16px; }
  .offers-header { flex-direction: column; }
  .offers-controls { align-self: flex-end; }
  .search-bar {
    margin-top: 18px;
    width: calc(100% - 32px);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { min-height: 300px; }
  .newsletter-content h2 { font-size: clamp(28px, 6vw, 44px); }
  .newsletter-action .btn-primary { width: 100%; }
  .banner-collage img { width: 110px; height: 150px; }
  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin-left: auto;
    order: 2;
  }
  .mobile-nav-toggle span {
    width: 18px;
    height: 2px;
    background: #223;
    border-radius: 2px;
    display: block;
    transition: transform .22s ease, opacity .22s ease, width .22s ease;
  }
  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
  }
  .mobile-nav.open { display: block; }
  body.no-scroll { overflow: hidden; }
  .mobile-nav-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    transition: opacity .25s ease;
  }
  .mobile-nav.open .mobile-nav-overlay { opacity: 1; }
  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -16px 0 40px rgba(0,0,0,.18);
    padding: 16px;
    gap: 14px;
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 2px;
  }
  .mobile-nav-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: #f3f4f7;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }
  .mobile-nav-content {
    display: grid;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding: 12px;
    border-radius: 16px;
    background: #f8f9fb;
    box-sizing: border-box;
  }
  .mobile-nav-links {
    display: grid;
    gap: 10px;
  }
  .mobile-nav-links a {
    display: block;
    padding: 14px 14px;
    border-radius: 12px;
    background: #fff;
    color: #223;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,.05);
    transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  }
  .mobile-nav-links a:hover { transform: translateX(4px); }
  .mobile-nav-links a.active {
    background: rgba(38,166,154,.12);
    color: var(--primary);
    border-color: rgba(38,166,154,.18);
  }
  .mobile-nav-footer {
    display: block;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .mobile-lang-group {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
  }
  .mobile-lang-title {
    font-size: 13px;
    font-weight: 700;
    color: #566;
    margin-bottom: 10px;
  }
  .mobile-lang-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mobile-lang-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(38,166,154,.18);
    background: #fff;
    color: #223;
    font-weight: 700;
  }
  .mobile-lang-button.active {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
  }
}
