:root {
  color-scheme: dark;
  --navy-950: #030914;
  --navy-900: #071426;
  --navy-800: #0b2038;
  --navy-700: #12375c;
  --gold: #d9ad5b;
  --gold-soft: #f2d79b;
  --education-accent: #173d68;
  --travel-accent: #86d8ff;
  --logistics-accent: #b8e96b;
  --clean-accent: #d7b7ff;
  --ivory: #f8f3e7;
  --muted: #b9c5d6;
  --line: rgba(242, 215, 155, 0.22);
  --glass: rgba(7, 20, 38, 0.74);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--navy-950);
  color: var(--ivory);
  line-height: 1.6;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(3, 9, 20, 0.92), rgba(3, 9, 20, 0.52));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 158px;
}

.brand-logo {
  width: 230px;
  height: 78px;
  object-fit: contain;
  border-radius: 6px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0;
  background: radial-gradient(circle at 30% 20%, rgba(242, 215, 155, 0.26), rgba(217, 173, 91, 0.04));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--gold-soft);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ivory);
  border-color: var(--gold);
}

.language-switcher {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.language-switcher button {
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.language-switcher button.active {
  color: var(--navy-950);
  background: var(--gold-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ivory);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(22px, 6vw, 86px) 90px;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 20, 0.95) 0%, rgba(3, 9, 20, 0.72) 42%, rgba(3, 9, 20, 0.1) 100%),
    linear-gradient(0deg, rgba(3, 9, 20, 0.95) 0%, rgba(3, 9, 20, 0) 35%);
}

body[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(3, 9, 20, 0.95) 0%, rgba(3, 9, 20, 0.72) 42%, rgba(3, 9, 20, 0.1) 100%),
    linear-gradient(0deg, rgba(3, 9, 20, 0.95) 0%, rgba(3, 9, 20, 0) 35%);
}

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

body[dir="rtl"] .hero-content {
  margin-inline-start: auto;
}

.eyebrow,
.section-kicker {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

body[dir="rtl"] .eyebrow,
body[dir="rtl"] .section-kicker {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 14px 34px rgba(217, 173, 91, 0.24);
}

.button.ghost {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08172a;
}

.trust-strip div {
  padding: 28px clamp(18px, 5vw, 72px);
  border-inline-end: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-inline-end: 0;
}

.trust-strip strong {
  display: block;
  color: var(--gold-soft);
  font-size: 2.2rem;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: 100px clamp(22px, 6vw, 86px) 42px;
}

.intro {
  max-width: 980px;
}

.intro p {
  max-width: 700px;
  margin-top: 20px;
  font-size: 1.12rem;
}

.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: stretch;
  padding: 64px clamp(22px, 6vw, 86px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-block.education {
  --section-accent: var(--education-accent);
}

.service-block.travel {
  --section-accent: var(--travel-accent);
}

.service-block.logistics {
  --section-accent: var(--logistics-accent);
}

.service-block.clean {
  --section-accent: var(--clean-accent);
}

.service-block .section-kicker,
.service-block .text-link {
  color: color-mix(in srgb, var(--section-accent, var(--gold-soft)) 72%, var(--gold-soft));
}

.service-block .service-copy li::before {
  background: color-mix(in srgb, var(--section-accent, var(--gold)) 70%, var(--gold));
}

.service-block.reverse .service-copy {
  order: 2;
}

.service-copy {
  position: relative;
  padding-block: 18px;
}

.service-number {
  color: rgba(242, 215, 155, 0.16);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.service-copy h2 {
  margin-top: 10px;
}

.service-copy p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.service-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-copy li {
  position: relative;
  padding-inline-start: 24px;
  color: var(--ivory);
}

.service-copy li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 28px;
  color: var(--gold-soft);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.service-panel {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--section-accent, var(--gold-soft)) 18%, transparent), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--section-accent, var(--gold-soft)) 18%, transparent), transparent 35%),
    var(--navy-800);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-panel:hover,
.service-panel:focus-visible {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--section-accent, var(--gold-soft)) 55%, transparent);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--section-accent, var(--gold-soft)) 24%, transparent), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--section-accent, var(--gold-soft)) 24%, transparent), transparent 35%),
    var(--navy-800);
}

.service-logo {
  width: min(100%, 460px);
  max-height: 230px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--section-accent, var(--gold-soft)) 32%, transparent);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.education-service-logo {
  width: min(100%, 540px);
  max-height: 300px;
}

.branch-service-logo {
  width: min(100%, 540px);
  max-height: 300px;
}

.service-panel-logo-block {
  display: grid;
  gap: 12px;
  margin-bottom: auto;
}

.service-panel span {
  color: color-mix(in srgb, var(--section-accent, var(--gold-soft)) 65%, var(--gold-soft));
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.92rem, 1.5vw, 1.18rem);
}

.service-panel em {
  max-width: 420px;
  color: var(--ivory);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.16;
}

.service-panel strong {
  max-width: 390px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.story,
.contact {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 6vw, 84px);
  padding: 96px clamp(22px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #061121, #09182b);
}

.story {
  align-items: center;
  background:
    radial-gradient(circle at 85% 10%, rgba(217, 173, 91, 0.16), transparent 34%),
    linear-gradient(135deg, #061121, #0b2038 48%, #030914);
}

.story h2 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  max-width: 940px;
}

.story p:last-child {
  max-width: 760px;
  color: var(--ivory);
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.reviews {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 96px clamp(22px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 173, 91, 0.14), transparent 32%),
    linear-gradient(135deg, #030914, #0b2038 58%, #061121);
}

.reviews-copy h2 {
  margin-top: 12px;
}

.reviews-copy p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 20px;
  font-size: 1.08rem;
}

.rating-summary {
  display: grid;
  gap: 8px;
  width: fit-content;
  margin-top: 28px;
  margin-bottom: 26px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.stars {
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  line-height: 1;
}

.rating-summary strong {
  color: var(--ivory);
}

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

.review-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.review-card h3 {
  margin: 18px 0 12px;
  color: var(--ivory);
  font-size: 1.15rem;
  line-height: 1.2;
}

.review-card p {
  font-size: 0.98rem;
}

.contact {
  align-items: start;
  background: #030914;
}

.contact-copy p:not(.section-kicker) {
  margin-top: 20px;
  font-size: 1.08rem;
}

.contact-lines a {
  color: var(--gold-soft);
  border-bottom: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ivory);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ivory);
  font: inherit;
}

textarea {
  resize: vertical;
}

select option {
  color: #071426;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 6vw, 86px);
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: var(--gold-soft);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 150px clamp(22px, 6vw, 86px) 78px;
  background:
    linear-gradient(90deg, rgba(3, 9, 20, 0.96), rgba(7, 20, 38, 0.8)),
    url("assets/skymood-hero.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.detail-hero.education-page {
  --detail-accent: var(--education-accent);
}

.detail-hero.travel-page {
  --detail-accent: var(--travel-accent);
}

.detail-hero.logistics-page {
  --detail-accent: var(--logistics-accent);
}

.detail-hero.clean-page {
  --detail-accent: var(--clean-accent);
}

.detail-hero.education-page,
.detail-hero.travel-page,
.detail-hero.logistics-page,
.detail-hero.clean-page {
  background:
    linear-gradient(90deg, rgba(3, 9, 20, 0.96), rgba(7, 20, 38, 0.8)),
    radial-gradient(circle at 82% 28%, color-mix(in srgb, var(--detail-accent) 24%, transparent), transparent 34%),
    url("assets/skymood-hero.png") center / cover;
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.detail-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
}

.detail-hero p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

.detail-logo-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 9, 20, 0.72);
  box-shadow: var(--shadow);
}

.detail-logo-card img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 8px;
}

.detail-logo-card .education-detail-logo {
  max-height: 360px;
}

.detail-logo-card .branch-detail-logo {
  max-height: 360px;
}

.service-identity {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-identity span {
  color: var(--gold-soft);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.service-identity strong {
  color: var(--ivory);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.12;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 76px clamp(22px, 6vw, 86px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-section {
  padding: 76px clamp(22px, 6vw, 86px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.info-section h2 {
  max-width: 940px;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
}

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

.info-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.info-card h3 {
  margin: 0 0 12px;
  color: var(--ivory);
  font-size: 1.12rem;
  line-height: 1.2;
}

.info-card p {
  font-size: 0.98rem;
}

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.detail-card h2,
.detail-card h3 {
  margin: 0 0 18px;
  line-height: 1.15;
}

.detail-card p {
  margin-top: 14px;
}

.detail-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.detail-list li {
  padding: 14px 16px;
  border-inline-start: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.back-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 clamp(22px, 6vw, 86px) 78px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    inset-inline: 18px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(3, 9, 20, 0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .service-block,
  .story,
  .contact,
  .reviews,
  .detail-hero-inner,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

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

  .service-block.reverse .service-copy {
    order: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 158px;
    height: 54px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }

  .language-switcher button {
    min-width: 34px;
    padding: 7px 8px;
  }

  .hero {
    min-height: 88vh;
    padding: 132px 20px 70px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-block,
  .section,
  .info-section,
  .story,
  .reviews,
  .contact {
    padding-inline: 20px;
  }

  .service-panel {
    min-height: 250px;
  }

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