:root {
  --page-bg: #d9f1ff;
  --page-bg-soft: #f7fcff;
  --text: #17314d;
  --muted: #56718c;

  --blue: #4db5f4;
  --blue-soft: #e7f6ff;
  --gold: #d5ad73;
  --gold-soft: #f2debd;

  --nav-glass: rgba(255, 255, 255, 0.58);
  --surface: rgba(255, 255, 255, 0.64);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --hero-panel: rgba(235, 247, 255, 0.48);

  --border: rgba(255, 255, 255, 0.66);
  --shadow: 0 28px 80px rgba(67, 129, 178, 0.18);

  --field-bg: rgba(255, 255, 255, 0.92);
  --field-border: rgba(23, 49, 77, 0.22);
  --field-placeholder: #6f7f93;
}

html[data-theme="dark"] {
  --page-bg: #03101c;
  --page-bg-soft: #071829;
  --text: #f6fbff;
  --muted: #bfd4e8;

  --blue: #5bbdf7;
  --blue-soft: #dff3ff;
  --gold: #d8b47a;
  --gold-soft: #f2dfc1;

  --nav-glass: rgba(8, 22, 38, 0.62);
  --surface: rgba(10, 25, 42, 0.64);
  --surface-strong: rgba(9, 24, 41, 0.86);
  --hero-panel: rgba(7, 20, 33, 0.42);

  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);

  --field-bg: rgba(12, 27, 44, 0.78);
  --field-border: rgba(255, 255, 255, 0.20);
  --field-placeholder: #b4c0ce;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(77, 181, 244, 0.28), transparent 30rem),
    radial-gradient(circle at 92% 14%, rgba(213, 173, 115, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--page-bg), var(--page-bg-soft));
}

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

.page-width,
.hero-wrap,
.site-header {
  width: min(1480px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.glass-nav,
.glass-surface {
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.glass-nav {
  background: var(--nav-glass);
}

.glass-surface {
  background: var(--surface);
}

/* Header */

.site-header {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 999px;
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  border: 2px solid rgba(213, 173, 115, 0.52);
}

.brand span {
  font-size: 1.05rem;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-weight: 750;
  color: var(--text);
}

.nav-links a {
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid var(--border);
}

.lang-btn,
.theme-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease;
}

.lang-btn:hover,
.theme-toggle:hover {
  transform: translateY(-2px);
}

.lang-btn.active {
  background: linear-gradient(135deg, rgba(77, 181, 244, 0.95), rgba(213, 173, 115, 0.9));
  color: #fff;
}

.theme-toggle {
  min-width: 46px;
  background: rgba(255, 255, 255, 0.30);
  border: 1px solid var(--border);
}

/* Hero */

.hero-wrap {
  margin-top: 20px;
}

.hero {
  position: relative;
  min-height: 760px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.44);
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.25s ease, transform 8s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 20%, rgba(77, 181, 244, 0.07), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.06), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.08));
}

html[data-theme="dark"] .hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(3, 16, 28, 0.10), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(3, 16, 28, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(3, 16, 28, 0.08), rgba(3, 16, 28, 0.28));
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding: 38px 42px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-banner,
.hero-bottom-strip {
  width: min(1320px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.hero-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: center;
  gap: 28px;
  padding: 28px 34px;
  border-radius: 30px;
  background: var(--hero-panel);
  border: 1px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}

.hero-main-text {
  min-width: 0;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold);
}

.section-eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
}

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

h1 {
  font-size: clamp(3.4rem, 5.6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  color: var(--text);
  margin: 10px 0 16px;
  max-width: none;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.hero-text {
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.65;
  color: var(--text);
  max-width: 850px;
  margin: 0 0 14px;
}

.hero-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.btn.primary {
  color: #17314d;
  background: rgba(255,255,255,0.94);
}

.btn.secondary {
  color: var(--text);
  border: 1px solid rgba(23, 49, 77, 0.12);
  background: rgba(255,255,255,0.38);
}

.btn.tertiary {
  color: var(--text);
  border: 1px solid rgba(23, 49, 77, 0.12);
  background: rgba(255, 255, 255, 0.36);
}

html[data-theme="dark"] .btn.secondary,
html[data-theme="dark"] .btn.tertiary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.10);
}

.hero-bottom-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-bottom-strip div {
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.hero-bottom-strip strong,
.hero-bottom-strip span {
  display: block;
  color: #17314d;
}

html[data-theme="dark"] .hero-bottom-strip strong,
html[data-theme="dark"] .hero-bottom-strip span {
  color: #ffffff;
}

.hero-bottom-strip strong {
  margin-bottom: 6px;
}

/* Intro */

.intro-strip {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: end;
  padding-top: 76px;
}

.intro-copy h2 {
  margin-bottom: 0;
}

.intro-text {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 720px;
}

/* Main sections */

.section {
  padding-top: 92px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

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

.card,
.process-card,
.contact-card,
.pricing-card,
.callback-card {
  border-radius: 26px;
  padding: 28px;
}

.card p,
.process-card p,
.contact-card p,
.pricing-card p,
.callback-card p {
  color: var(--muted);
  line-height: 1.75;
}

.highlight-card {
  background:
    linear-gradient(145deg, rgba(231,246,255,0.50), rgba(242,222,189,0.32)),
    var(--surface);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  border-radius: 18px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(231,246,255,0.9), rgba(242,222,189,0.74));
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.pricing-card {
  position: relative;
  min-height: 100%;
}

.pricing-card.featured {
  transform: translateY(-10px);
  border-color: rgba(213, 173, 115, 0.48);
  background:
    linear-gradient(145deg, rgba(231,246,255,0.60), rgba(242,222,189,0.42)),
    var(--surface);
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
}

.package-label {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.package-price {
  color: var(--text) !important;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
  font-weight: 950;
  margin-bottom: 12px;
}

.pricing-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
  margin: 22px 0;
}

.package-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  color: #fff;
}

/* Destinations */

.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.destination-card {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.destination-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 20, 33, 0.76), rgba(7, 20, 33, 0.06));
}

.destination-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.destination-content span {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  margin-bottom: 10px;
}

.destination-content h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.destination-content p {
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  max-width: 520px;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 26px;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.08rem;
}

/* Callback form */

.callback-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.callback-form {
  display: grid;
  gap: 16px;
}

.callback-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 850;
}

.callback-form label span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  border: 1.5px solid var(--field-border);
  border-radius: 18px;
  padding: 15px 17px;
  color: var(--text);
  background: var(--field-bg);
  font: inherit;
  font-weight: 650;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.callback-form input::placeholder,
.callback-form textarea::placeholder {
  color: var(--field-placeholder);
  opacity: 1;
}

.callback-form input:focus,
.callback-form textarea:focus {
  border-color: var(--blue);
  box-shadow:
    0 0 0 4px rgba(77, 181, 244, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.callback-form textarea {
  min-height: 150px;
  resize: vertical;
}

.callback-form button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  color: white;
  font-weight: 950;
  cursor: pointer;
  font: inherit;
}

/* Contact and process */

.process-card,
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.steps span {
  color: var(--gold);
  font-weight: 950;
}

.steps p {
  margin: 0;
  color: var(--text);
  font-weight: 850;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  font-weight: 850;
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Footer */

.site-footer {
  margin-top: 96px;
  background:
    radial-gradient(circle at 10% 10%, rgba(77,181,244,0.18), transparent 26rem),
    linear-gradient(135deg, #0a2238, #081727);
  color: #fff;
  padding: 54px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 0.9fr;
  gap: 34px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: white;
  margin-bottom: 14px;
}

.footer-brand h2 {
  margin-bottom: 12px;
}

.footer-brand p,
.footer-column p {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.footer-column h3 {
  color: var(--gold-soft);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 34px;
  padding-top: 18px;
  color: rgba(255,255,255,0.70);
  text-align: center;
}

/* Animations and RTL */

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

[dir="rtl"] .brand,
[dir="rtl"] .nav-links,
[dir="rtl"] .header-actions,
[dir="rtl"] .hero-actions,
[dir="rtl"] .steps div {
  flex-direction: row-reverse;
}

[dir="rtl"] .destination-content {
  text-align: right;
}

[dir="rtl"] .pricing-card.featured::before {
  right: auto;
  left: 18px;
}

/* Responsive */

@media (max-width: 1180px) {
  .intro-strip,
  .about-grid,
  .process-card,
  .contact-card,
  .callback-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

  .pricing-card.featured {
    transform: none;
  }

  .hero-banner {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn {
    flex: 1 1 170px;
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .brand {
    justify-content: center;
  }

  .nav-links,
  .header-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .hero-inner {
    padding: 24px;
  }

  .hero-banner,
  .hero-bottom-strip {
    width: 100%;
  }

  h1 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .page-width,
  .hero-wrap,
  .site-header {
    width: min(100%, calc(100% - 20px));
  }

  .hero {
    min-height: 720px;
    border-radius: 24px;
  }

  .hero-inner {
    min-height: 720px;
    padding: 18px;
  }

  .hero-banner,
  .card,
  .process-card,
  .contact-card,
  .pricing-card,
  .callback-card {
    padding: 22px;
    border-radius: 22px;
  }

  .destination-card {
    min-height: 330px;
    border-radius: 22px;
  }

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

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Mobile hero cleanup */

@media (max-width: 640px) {
  .site-header {
    position: relative;
    top: 0;
    margin-top: 10px;
    padding: 14px;
  }

  .hero-wrap {
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 16px;
    gap: 18px;
  }

  .hero-banner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    text-align: center;
  }

  .hero-main-text {
    text-align: center;
  }

  .hero-banner h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
    line-height: 0.95;
    white-space: normal;
    margin-bottom: 12px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-contact-line {
    justify-content: center;
    font-size: 0.85rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
    min-height: 48px;
    height: 48px;
    padding: 0 18px;
    flex: none !important;
    border-radius: 999px;
    font-size: 0.95rem;
  }

  .hero-bottom-strip {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-bottom-strip div {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.92rem;
  }

  .language-switcher {
    width: 100%;
  }

  .lang-btn {
    flex: 1;
    padding: 9px 8px;
  }

  .theme-toggle {
    margin: 0 auto;
  }
}