/* Samal Sayahat — light theme, brand colors */
:root {
  --navy: #1e3a5f;
  --navy-dark: #0f172a;
  --gold: #d4a853;
  --gold-dark: #c9a227;
  --text: #334155;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #fafaf9;
  --bg-soft: #f8f6f3;
  --border: #e8e6e3;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(30, 58, 95, 0.04);
  --shadow-md: 0 4px 12px rgba(30, 58, 95, 0.06);
  --shadow-hover: 0 8px 24px rgba(30, 58, 95, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--gold-dark);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--navy-dark);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* Header — light, airy */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--gold-dark);
}

.logo__img {
  display: block;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s;
}

.logo:hover .logo__img {
  opacity: 0.85;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--gold-dark);
}

.header__cta {
  flex-shrink: 0;
}

/* Language switcher */
.header__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-btn {
  padding: 0.25rem 0.5rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.lang-btn:hover {
  color: var(--navy);
}

.lang-btn.is-active {
  color: var(--gold-dark);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.lang-divider {
  color: var(--border);
  font-size: 0.875rem;
  user-select: none;
}

.header__lang--mobile {
  padding: 0.75rem 0;
  justify-content: center;
}

/* Bilingual content: show only active language */
[data-lang="ru"] {
  display: none;
}

body.lang-kz [data-lang="kz"] {
  display: inline;
}

body.lang-kz [data-lang="ru"] {
  display: none;
}

body.lang-ru [data-lang="kz"] {
  display: none;
}

body.lang-ru [data-lang="ru"] {
  display: inline;
}

/* Block-level elements need display block when visible */
body.lang-kz .hero__title [data-lang="kz"],
body.lang-ru .hero__title [data-lang="ru"],
body.lang-kz .section__title [data-lang="kz"],
body.lang-ru .section__title [data-lang="ru"],
body.lang-kz .hero__subtitle [data-lang="kz"],
body.lang-ru .hero__subtitle [data-lang="ru"],
body.lang-kz .hero__trust [data-lang="kz"],
body.lang-ru .hero__trust [data-lang="ru"],
body.lang-kz .about__intro [data-lang="kz"],
body.lang-ru .about__intro [data-lang="ru"],
body.lang-kz .card-dest__text [data-lang="kz"],
body.lang-ru .card-dest__text [data-lang="ru"],
body.lang-kz .card-dest__title [data-lang="kz"],
body.lang-ru .card-dest__title [data-lang="ru"],
body.lang-kz .card-serv__title [data-lang="kz"],
body.lang-ru .card-serv__title [data-lang="ru"],
body.lang-kz .card-serv__text [data-lang="kz"],
body.lang-ru .card-serv__text [data-lang="ru"],
body.lang-kz .about__item > [data-lang="kz"],
body.lang-ru .about__item > [data-lang="ru"],
body.lang-kz .review__text [data-lang="kz"],
body.lang-ru .review__text [data-lang="ru"],
body.lang-kz .section__subtitle [data-lang="kz"],
body.lang-ru .section__subtitle [data-lang="ru"],
body.lang-kz .partners__note [data-lang="kz"],
body.lang-ru .partners__note [data-lang="ru"],
body.lang-kz .form__promise [data-lang="kz"],
body.lang-ru .form__promise [data-lang="ru"],
body.lang-kz .footer__tagline [data-lang="kz"],
body.lang-ru .footer__tagline [data-lang="ru"],
body.lang-kz .footer__copy [data-lang="kz"],
body.lang-ru .footer__copy [data-lang="ru"] {
  display: block;
}

/* Country / destination page */
.country-intro {
  display: block;
}

body.lang-kz .country-intro [data-lang="kz"],
body.lang-ru .country-intro [data-lang="ru"] {
  display: block;
}

.hero--country .hero__bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.destinations-detail {
  padding-top: 2rem;
}

.destination-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* Country hero same airy overlay */
.hero--country .hero__overlay {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 0%, rgba(30, 58, 95, 0.5) 50%, rgba(15, 23, 42, 0.7) 100%);
}

.destination-detail:last-of-type {
  border-bottom: none;
}

.destination-detail__media {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
}

.destination-detail__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.destination-detail__content {
  padding-top: 0.25rem;
}

.destination-detail__title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.destination-detail__text {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
}

body.lang-kz .destination-detail__text [data-lang="kz"],
body.lang-ru .destination-detail__text [data-lang="ru"] {
  display: block;
}

.card-dest__cta {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.card-dest__content .card-dest__cta + .card-dest__link {
  display: block;
  margin-top: 0.25rem;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.header__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0;
  padding: 1rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.header__mobile .nav__link {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.header__mobile .nav__link:hover {
  color: var(--gold-dark);
}

.header__mobile .btn {
  margin-top: 1rem;
}

/* Hero — lighter overlay, airy */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy) url('Images/Hero.jpg') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(30, 58, 95, 0.55) 50%, rgba(15, 23, 42, 0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 1rem 4rem;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__trust {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Ornament strip under hero */
.hero__ornament {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: url('Images/ornament-border.svg') center repeat-x;
  background-size: auto 24px;
  opacity: 0.9;
  z-index: 1;
}

/* Section common — more air */
.section {
  padding: 4.5rem 0;
}

.section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.section__title--small {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.section__subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.0625rem;
  color: var(--text-light);
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Section ornament divider */
.section__ornament {
  display: block;
  width: 100%;
  height: 24px;
  margin-top: -1px;
  background: url('Images/ornament-border.svg') center repeat-x;
  background-size: auto 24px;
  opacity: 0.7;
}

.section__ornament--top {
  margin-top: 0;
  margin-bottom: -1px;
}

/* Corner ornament for sections */
.section__corner {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  opacity: 0.6;
}

.section__corner--top-right {
  top: 0;
  right: 0;
  background: url('Images/ornament-corner.svg') top right no-repeat;
  background-size: 80px 80px;
}

.section__corner--bottom-left {
  bottom: 0;
  left: 0;
  background: url('Images/ornament-corner.svg') bottom left no-repeat;
  background-size: 80px 80px;
  transform: rotate(180deg);
}

/* Destinations — light cards, gold accent on hover */
.destinations {
  background: var(--bg-alt);
  position: relative;
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.card-dest {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
  border: 1px solid transparent;
}

.card-dest:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 168, 83, 0.35);
}

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

.card-dest__content {
  padding: 1.5rem;
}

.card-dest__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.card-dest__text {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-light);
}

.card-dest__cta.btn {
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
}

.card-dest__link {
  font-weight: 600;
  color: var(--gold-dark);
}

.card-dest__link:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* Services — light cards, gold bullet icons */
.services {
  background: var(--bg-soft);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card-serv {
  padding: 2rem;
  background: var(--bg);
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.2s;
}

.card-serv:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-serv__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold);
  border-radius: 12px;
  font-size: 1.5rem;
  line-height: 1;
}

.card-serv__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.card-serv__text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}

.card-serv__link {
  font-weight: 600;
  color: var(--gold-dark);
}

.card-serv__link:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* About — light, gold bullets */
.about {
  background: var(--bg-alt);
}

.about__intro {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: var(--text);
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.about__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--text);
}

.about__bullet {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.2);
}

/* Reviews — light cards, gold quote accent */
.reviews {
  background: var(--bg-soft);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review {
  margin: 0;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  background: var(--bg);
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  position: relative;
}

.review__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.review__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review__stars {
  color: var(--gold);
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  margin: 0;
}

.review__text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  font-style: italic;
}

.review__author {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: normal;
}

/* Partners — very light bg, optional ornament */
.partners {
  background: var(--bg-alt);
  position: relative;
}

.partners__note {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  text-align: center;
}

.partners__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.partners__list li {
  padding: 0;
  background: transparent;
  border-radius: 8px;
  border: none;
}

.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__logo {
  display: block;
  max-height: 48px;
  width: auto;
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

/* Form — light card, gold CTA */
.form-section {
  background: var(--bg-soft);
  color: var(--text);
}

.form-section .section__title {
  color: var(--navy);
}

.form-section .section__subtitle {
  color: var(--text-light);
}

.form-section__inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.form-section__cta {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form__label-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.form__textarea {
  resize: vertical;
  min-height: 88px;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-light);
}

.form__promise {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.form button[type="submit"] {
  margin-top: 0.5rem;
}

/* Contacts */
.contacts__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contacts__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contacts__icon {
  font-size: 1.25rem;
}

.contacts__link {
  font-weight: 500;
  color: var(--navy);
}

.contacts__link:hover {
  color: var(--gold-dark);
}

/* Footer — light, navy text, gold accents, optional ornament */
.footer {
  padding: 3rem 0 2.5rem;
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid var(--border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: url('Images/ornament-border.svg') center repeat-x;
  background-size: auto 24px;
  opacity: 0.6;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: start;
  padding-top: 1rem;
}

.footer__logo {
  color: var(--navy);
}

.footer__logo:hover {
  color: var(--gold-dark);
}

.footer__tagline {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-light);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: var(--navy);
  font-size: 0.9375rem;
}

.footer__link:hover {
  color: var(--gold-dark);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__social-link {
  color: var(--navy);
  font-size: 0.9375rem;
}

.footer__social-link:hover {
  color: var(--gold-dark);
}

.footer__copy {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .nav:not(.nav--mobile) {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__inner .header__lang {
    display: none;
  }

  .header__mobile.is-open {
    display: flex;
  }

  .hero {
    min-height: 75vh;
  }

  .hero__content {
    padding: 2.5rem 1rem 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section__corner {
    width: 56px;
    height: 56px;
    background-size: 56px 56px;
  }

  .form-section__inner {
    padding: 1.75rem 1.25rem;
  }

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

  .destination-detail {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__links,
  .footer__social {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .partners__list {
    flex-direction: column;
    align-items: center;
  }
}
