@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f3f5f7;
  --surface: #ffffff;
  --ink: #1f2937;
  --ink-soft: #5c677d;
  --brand: #0f766e;
  --brand-2: #f97316;
  --brand-3: #14b8a6;
  --line: #e2e8f0;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 5px 14px rgba(15, 23, 42, 0.05);
  --maxw: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  background:
    radial-gradient(1200px 420px at 10% -5%, rgba(20, 184, 166, 0.12), transparent 60%),
    radial-gradient(1000px 420px at 95% -5%, rgba(249, 115, 22, 0.12), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main,
header,
footer {
  width: min(100% - 1.25rem, var(--maxw));
  margin-inline: auto;
}

section,
aside {
  margin: 1.1rem 0;
}

.block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin-top: 0.75rem;
  backdrop-filter: blur(10px);
}

.topbar nav {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(31, 41, 55, 0.1);
  border-radius: 14px;
  padding: 0.62rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--brand), var(--brand-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #dbe5ef;
  border-radius: 10px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar nav.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar nav.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar nav.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu a {
  display: inline-block;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  background: rgba(15, 118, 110, 0.1);
  color: #0b3d3a;
}

.hero {
  background: linear-gradient(120deg, #ffffff 0%, #f3fbff 100%);
}

.hero-showcase {
  display: grid;
  gap: 0.85rem;
}

.trip-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dbe7f1;
  background: #0f172a;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.03);
  transition: transform 0.7s ease;
}

.slide.is-active img {
  transform: scale(1.06);
}

.slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.7rem 0.9rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #f8fafc;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.82));
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #0f172a;
  font-size: 1.1rem;
  cursor: pointer;
}

.slider-btn.prev {
  left: 0.5rem;
}

.slider-btn.next {
  right: 0.5rem;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: #ffffff;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.dot.is-active {
  width: 22px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  color: #0f766e;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.24);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0.45rem 0 0.8rem;
}

h1,
h2 {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.4px;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.1rem);
}

h2 {
  font-size: clamp(1.4rem, 4.2vw, 2.2rem);
}

h3 {
  font-size: clamp(1.02rem, 3.4vw, 1.22rem);
}

p {
  margin: 0.5rem 0 0.72rem;
  color: #374151;
}

.grid {
  display: grid;
  gap: 1rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.75rem 0 0;
  padding: 0;
}

.pill-list li {
  border: 1px solid #dbe5ef;
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: none;
}

.card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: none;
}

.note {
  border-left: 4px solid var(--brand-2);
  background: rgba(234, 88, 12, 0.1);
  border-radius: 10px;
  padding: 0.95rem;
}

.cta {
  background: linear-gradient(120deg, #0f766e 0%, #0b5b57 100%);
  color: #ebfffc;
  border-color: rgba(255, 255, 255, 0.18);
}

.cta h2,
.cta p {
  color: #ebfffc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.76rem 1.16rem;
  font-weight: 800;
  font-size: 0.93rem;
  letter-spacing: 0.15px;
  background: linear-gradient(95deg, var(--brand-2), #fb923c);
  color: #fff;
  box-shadow: 0 8px 18px rgba(234, 88, 12, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 26px rgba(234, 88, 12, 0.32);
}

.faq-item + .faq-item {
  margin-top: 0.72rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}

footer .footer-wrap {
  margin: 1rem 0 1.3rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 1.2rem;
  background: #ffffff;
  color: #334155;
  border-top: 1px solid #e2e8f0;
}

.container {
  width: min(100% - 1.25rem, var(--maxw));
  margin-inline: auto;
}

.footer-content {
  display: grid;
  gap: 1.4rem;
  padding: 1.5rem 0 1.25rem;
}

.footer-info p {
  color: #475569;
  margin: 0.7rem 0;
  max-width: 46ch;
}

.logo {
  display: inline-flex;
}

.logo-img {
  width: 173px;
  height: 48px;
  object-fit: contain;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-icons a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  background: var(--brand-2);
}

.footer-links-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.footer-group h4 {
  margin: 0 0 0.55rem;
  color: #0f172a;
  font-size: 1rem;
}

.footer-group a {
  display: block;
  color: #475569;
  margin: 0.3rem 0;
  font-size: 0.94rem;
}

.footer-group a:hover,
.footer-group a:focus-visible {
  color: #ffffff;
}

.contact-group p {
  margin: 0.45rem 0;
  color: #475569;
}

.contact-group i {
  color: #34d399;
  margin-right: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding: 0.85rem 0;
}

.bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.bottom-inner p,
.tursab-license {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
}

.whatsapp-fixed-left {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
  z-index: 60;
}

.whatsapp-fixed-left:hover,
.whatsapp-fixed-left:focus-visible {
  filter: brightness(1.05);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.55s ease forwards;
}

[data-reveal="1"] { animation-delay: 0.08s; }
[data-reveal="2"] { animation-delay: 0.16s; }
[data-reveal="3"] { animation-delay: 0.24s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 700px) {
  .block {
    padding: 1.65rem;
  }

  .grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .grid {
    grid-template-columns: 1.4fr 0.9fr;
    align-items: center;
    gap: 1.4rem;
  }

  .slide {
    aspect-ratio: 16 / 9;
  }

  .menu a {
    font-size: 0.92rem;
  }
}

@media (max-width: 820px) {
  .topbar nav {
    position: relative;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu {
    display: none;
    width: 100%;
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    border-top: 1px solid #e2e8f0;
    gap: 0.35rem;
  }

  .topbar nav.menu-open .menu {
    display: grid;
  }

  .menu a {
    width: 100%;
    border-radius: 10px;
    padding: 0.62rem 0.72rem;
    background: #f8fafc;
  }
}

@media (min-width: 980px) {
  main,
  header,
  footer {
    width: min(100% - 3.5rem, var(--maxw));
  }

  .topbar nav {
    padding-inline: 1.15rem;
  }

  section,
  aside {
    margin: 1.3rem 0;
  }

  .container {
    width: min(100% - 3.5rem, var(--maxw));
  }

  .footer-content {
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: start;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .hero .grid {
    grid-template-columns: 1.6fr 0.9fr;
  }

  .block {
    padding: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
