:root {
  --bg: #040404;
  --bg-soft: #080808;
  --bg-deep: #0a0a0a;
  --primary: #8bcf63;
  --accent: #7dbf9b;
  --text: #f4f6fa;
  --muted: #a4afbc;
  --glass: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.14);
  --radius: 28px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  --glow: 0 0 28px rgba(125, 191, 155, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 96px;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 88% 6%, rgba(125, 191, 155, .08), transparent 34%),
    radial-gradient(circle at 4% 96%, rgba(139, 207, 99, .06), transparent 30%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-soft) 45%, var(--bg));
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
canvas#particles { position: fixed; inset: 0; z-index: -4; opacity: .18; }
.noise-overlay { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .05; background-image: radial-gradient(#fff 0.45px, transparent 0.45px); background-size: 3px 3px; }
.bg-blobs { position: fixed; inset: 0; z-index: -3; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(72px); opacity: .12; animation: blobShift 22s ease-in-out infinite; }
.blob-1 { width: 30vw; height: 30vw; top: -12vw; right: 20vw; background: #2e483a; }
.blob-2 { width: 20vw; height: 20vw; left: -5vw; bottom: 8vh; background: #314939; animation-delay: -6s; }
@keyframes blobShift { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(24px,-18px) scale(1.08);} }
.cursor-glow { position: fixed; width: 220px; height: 220px; border-radius: 50%; pointer-events: none; z-index: -2; background: radial-gradient(circle, rgba(139,207,99,.12), transparent 65%); transform: translate(-50%, -50%); filter: blur(30px); }

.glass { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.section { width: min(1200px, 92%); margin: 0 auto; padding: 86px 0; }
.section-head { margin-bottom: 30px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-size: .74rem; margin-bottom: 12px; }
h1,h2,h3 { margin: 0 0 12px; line-height: 1.12; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.8rem); }
p { margin: 0; }

.header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92%);
  padding: 12px 18px;
  z-index: 60;
  background: rgba(10, 10, 10, .72);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { width: clamp(140px, 20vw, 220px); height: clamp(42px, 5vw, 68px); object-fit: contain; display: block; }
.nav { display: none; gap: 24px; }
.nav a { color: #d4dbe4; text-decoration: none; transition: color .24s ease; }
.nav a:hover { color: #fff; }

.btn { border: 1px solid rgba(139,207,99,.34); background: linear-gradient(135deg, rgba(139,207,99,.16), rgba(125,191,155,.1)); color: #f6fbf2; border-radius: 999px; padding: 14px 22px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--glow); border-color: rgba(139,207,99,.56); }
.btn-secondary { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.22); }
.btn-sm { padding: 10px 16px; font-size: .9rem; }

.hero { position: relative; display: grid; gap: 30px; align-items: center; padding-top: 100px; overflow: hidden; }
.hero-burj { position: absolute; right: clamp(-46px, -4vw, 0px); bottom: 6px; width: min(300px, 36vw); height: clamp(360px, 52vw, 520px); opacity: .38; z-index: 0; pointer-events: none; transform-style: preserve-3d; }
.burj-layer { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 24px; clip-path: polygon(50% 0,58% 15%,62% 27%,66% 38%,70% 53%,72% 66%,74% 79%,76% 92%,78% 100%,22% 100%,24% 92%,26% 79%,28% 66%,30% 53%,34% 38%,38% 27%,42% 15%); }
.burj-back { width: 82%; height: 100%; background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(122,135,145,.04)); }
.burj-mid { width: 66%; height: 88%; background: linear-gradient(180deg, rgba(126,183,147,.32), rgba(255,255,255,.06)); transform: translateX(-50%) translateZ(12px); }
.burj-front { width: 42%; height: 74%; background: linear-gradient(180deg, rgba(255,255,255,.38), rgba(111,136,154,.08)); transform: translateX(-50%) translateZ(22px); box-shadow: var(--glow); }
.hero-content, .hero-card { position: relative; z-index: 2; }
.subtitle { color: var(--muted); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-card { padding: 28px; }
.hero-logo { width: min(220px, 62%); height: 56px; object-fit: contain; margin-bottom: 12px; }
.hero-card ul { margin: 0; padding-left: 18px; color: #d3dae2; }
.floating { animation: floatY 7s ease-in-out infinite; }
@keyframes floatY { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

.booking-form { padding: 22px; }
.form-grid { display: grid; gap: 14px; }
label { display: flex; flex-direction: column; gap: 8px; color: #d8dee7; font-weight: 600; }
input, textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(255,255,255,.01); color: var(--text); font: inherit; padding: 12px 14px; }
input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(125,191,155,.18); }
.full { grid-column: 1 / -1; }
.form-message { min-height: 1.4em; color: var(--accent); margin-top: 10px; }

.slider-wrapper { position: relative; }
.destination-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 80%); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: thin; }
.slide { scroll-snap-align: center; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.slide img { width: 100%; height: 220px; object-fit: cover; display: block; }
.slide-content { padding: 16px; }
.slide-content p { color: #b8c2cf; }
.slide-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.slide:hover, .country-thumb:hover, .format-card:hover, .russia-card:hover, .card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.slider-nav { display: none; position: absolute; top: 45%; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); background: rgba(8,8,8,.84); color: #fff; transform: translateY(-50%); cursor: pointer; }
#prevSlide { left: -12px; } #nextSlide { right: -12px; }

.featured-country { display: grid; gap: 18px; padding: 18px; margin-bottom: 16px; grid-template-columns: minmax(0,1fr); }
.featured-media { min-height: 260px; border-radius: 22px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.featured-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.52)); }
.featured-content { display: grid; gap: 10px; }
.meta-line { color: #dce4ec; font-size: .93rem; }
.tags-line { display: flex; flex-wrap: wrap; gap: 8px; }
.tags-line span { border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 6px 10px; font-size: .78rem; background: rgba(255,255,255,.02); }
.country-thumbs { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.country-thumb { padding: 14px; cursor: pointer; transition: transform .24s ease, border-color .24s ease; }
.country-thumb.active { border-color: rgba(139,207,99,.56); box-shadow: var(--glow); }
.section-actions { margin-top: 16px; display: flex; justify-content: center; }

.format-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.tab-btn { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.02); color: #dbe4ee; border-radius: 999px; padding: 10px 14px; cursor: pointer; transition: border-color .22s ease, background .22s ease, color .22s ease; }
.tab-btn.active { border-color: rgba(139,207,99,.52); background: rgba(139,207,99,.14); color: #f7fff3; }
.formats-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.format-card { padding: 20px; }
.format-card p { color: #b8c2cf; margin-top: 8px; }

.russia-scroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 32%); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.russia-card { scroll-snap-align: start; min-height: 220px; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.russia-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.65)); }
.russia-card > * { position: relative; z-index: 1; }
.russia-card p { color: #d4dbe4; }

.cards-4 { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card, .cta-card { padding: 24px; transition: transform .28s ease, box-shadow .28s ease; }
.cta { padding-bottom: 120px; }
.cta-card { text-align: center; }

.contact-fab { position: fixed; right: 12px; bottom: 12px; z-index: 70; }
.contact-fab__toggle { border: 1px solid rgba(139,207,99,.35); background: rgba(14,14,14,.95); color: #f4faf1; border-radius: 999px; padding: 11px 15px; font-weight: 700; cursor: pointer; box-shadow: 0 12px 28px rgba(0,0,0,.45); }
.contact-fab__menu { position: absolute; right: 0; bottom: calc(100% + 8px); min-width: 170px; padding: 8px; display: grid; gap: 5px; opacity: 0; transform: translateY(10px) scale(.98); visibility: hidden; pointer-events: none; transition: opacity .24s ease, transform .24s ease, visibility .24s ease; }
.contact-fab.is-open .contact-fab__menu { opacity: 1; transform: translateY(0) scale(1); visibility: visible; pointer-events: auto; }
.contact-fab__menu a { text-decoration: none; color: #e8eef6; padding: 10px 11px; border-radius: 10px; }
.contact-fab__menu a:hover { background: rgba(255,255,255,.05); }

.footer { width: min(1200px, 92%); margin: 0 auto 24px; padding: 24px; display: grid; gap: 16px; }
.footer nav { display: grid; gap: 8px; }
.footer a { color: #c6e3d2; }

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

@media (max-width: 767px) {
  body { padding-top: 86px; }
  .hero { padding-top: 58px; }
  .hero-burj { width: 150px; height: 300px; right: -24px; opacity: .28; }
  .russia-scroll { grid-auto-columns: minmax(220px, 78%); }
  .country-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 72%); overflow-x: auto; }
  .contact-fab__menu { min-width: 156px; }
}
@media (min-width: 768px) {
  .hero { grid-template-columns: 1.1fr .9fr; }
  .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .featured-country { grid-template-columns: 1.1fr .9fr; }
  .destination-slider { grid-auto-columns: minmax(320px, 42%); }
  .slider-nav { display: grid; place-items: center; }
}
@media (min-width: 1024px) { .nav { display: flex; } }

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