:root {
  --bg: #f2f6f8;
  --bg-dark: #0d1c28;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.88);
  --primary: #0d6a7a;
  --primary-dark: #0a4d58;
  --accent: #ff7a48;
  --accent-soft: rgba(255, 122, 72, 0.14);
  --text: #1c2a33;
  --muted: #5a6e78;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(12, 44, 68, 0.16);
  --shadow-strong: 0 30px 60px rgba(12, 44, 68, 0.24);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a:hover,
a:focus {
  color: var(--accent);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes shimmer {
  0% {
    opacity: 0.2;
    transform: translateX(-40%);
  }
  50% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(13, 106, 122, 0.28);
  }
  50% {
    box-shadow: 0 20px 40px rgba(13, 106, 122, 0.36);
  }
}

.animate-rise {
  opacity: 0;
  transform: translateY(26px);
  animation: riseIn 0.9s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.15s;
}
.animate-delay-2 {
  animation-delay: 0.3s;
}
.animate-delay-3 {
  animation-delay: 0.45s;
}
.animate-delay-4 {
  animation-delay: 0.6s;
}

.animate-float {
  animation: floatBob 18s ease-in-out infinite;
}

section {
  padding: 5rem 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--text);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 3vw + 2rem, 3.9rem);
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(2rem, 1.8vw + 1.6rem, 3rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    color 0.25s ease;
}

.btn.primary {
  background: linear-gradient(140deg, var(--accent), rgba(255, 154, 104, 0.95));
  color: var(--white);
  box-shadow: 0 16px 40px rgba(255, 122, 72, 0.3);
}

.btn.primary:hover,
.btn.primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 122, 72, 0.26);
}

.btn.secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid rgba(13, 106, 122, 0.18);
  box-shadow: 0 12px 26px rgba(12, 44, 68, 0.12);
}

.btn.secondary:hover,
.btn.secondary:focus {
  border-color: rgba(13, 106, 122, 0.36);
  transform: translateY(-2px);
}

.btn.ghost {
  border: 2px solid rgba(13, 106, 122, 0.45);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 24px rgba(12, 44, 68, 0.14);
}

.btn.ghost:hover,
.btn.ghost:focus {
  border-color: rgba(13, 106, 122, 0.65);
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
}

.btn,
.nav-cta {
    white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(242, 246, 248, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 44, 68, 0.05);
}

.site-header .nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
}

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

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

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

.site-nav a {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(13, 106, 122, 0.28);
  animation: pulseGlow 8s ease-in-out infinite;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 106, 122, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.language-toggle:hover,
.language-toggle:focus {
  border-color: rgba(13, 106, 122, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 44, 68, 0.14);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(12, 44, 68, 0.18);
  background: rgba(255, 255, 255, 0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
  border-color: rgba(13, 106, 122, 0.45);
  box-shadow: 0 12px 24px rgba(12, 44, 68, 0.18);
}

.menu-toggle .menu-bar,
.menu-toggle .menu-bar::before,
.menu-toggle .menu-bar::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle .menu-bar::before {
  transform: translateY(-6px);
}
.menu-toggle .menu-bar::after {
  transform: translateY(6px);
}

body.nav-open .menu-toggle .menu-bar {
  background: transparent;
}

body.nav-open .menu-toggle .menu-bar::before {
  transform: translateY(0) rotate(45deg);
}

body.nav-open .menu-toggle .menu-bar::after {
  transform: translateY(0) rotate(-45deg);
}

.hero {
  background: radial-gradient(
      circle at top left,
      rgba(13, 106, 122, 0.12),
      transparent 58%
    ),
    var(--bg);
  padding-top: calc(var(--header-height) + 2rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.6rem;
}

.hero-body {
  max-width: 540px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-media {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 1.5rem;
}

.hero-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image.main {
  width: clamp(320px, 32vw, 520px);
}

.hero-image.inset {
  width: 68%;
  margin-right: 2.5%;
  margin-top: -155px;
  border: 6px solid var(--bg);
}
.intro {
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(242, 246, 248, 0.94) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  opacity: 1;
  transform: scale(1.02);
}

.intro > .container {
  position: relative;
  z-index: 1;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.6rem;
  align-items: start;
}

.intro-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.6rem;
}

.intro-highlights p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.rentals {
  position: relative;
  overflow: hidden;
}

.rentals::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(242, 246, 248, 0.92) 45%,
    rgba(242, 246, 248, 0.98) 100%
  );
  transform: scale(1.04);
  filter: saturate(1.05);
}

.rentals > .container {
  position: relative;
  z-index: 1;
}
.section-heading {
  max-width: 620px;
  margin-bottom: 3rem;
}

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

.card {
  background: var(--surface);
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 44, 68, 0.06);
  display: grid;
  gap: 1.4rem;
}

.card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.card ul li strong {
  color: var(--primary);
}

.card-time {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
}

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

.tours-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.tour-details {
  list-style: none;
  margin: 2rem 0 2.3rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.tours-aside {
  /* background: var(--accent-soft); */
  /* background: rgba(142, 208, 219, 0.22); */
  background: linear-gradient(135deg, rgba(31, 111, 120, 0.12), rgba(245, 166, 91, 0.12));
  border-radius: 24px;
  padding: 2.1rem;
  border: 1px solid rgba(14, 65, 76, 0.3);
}

.safety {
  background: radial-gradient(
    circle at top right,
    rgba(13, 106, 122, 0.14),
    transparent 60%
  );
}

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

.included,
.tips {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

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

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-grid figure {
  margin: 0;
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(12, 44, 68, 0.18);
}

.gallery-grid figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonials {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(7, 27, 42, 0.75) 0%,
    rgba(13, 58, 76, 0.6) 55%,
    rgba(13, 106, 122, 0.4) 100%
  );
  opacity: 1;
  transform: scale(1.05);
}

.testimonials > .container {
  position: relative;
  z-index: 1;
}

.testimonials .testimonial-cards article {
  background: rgba(255, 255, 255, 0.12);
}

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

.testimonial-cards {
  display: grid;
  gap: 1.6rem;
}

.testimonial-cards article {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.8rem 2.1rem;
  box-shadow: 0 16px 34px rgba(12, 44, 68, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.testimonial-cards .name {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.contact {
  background: linear-gradient(165deg, #12374b 0%, #0b2434 52%, #071b2a 100%);
  color: rgba(255, 255, 255, 0.97);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.22),
    transparent 70%
  );
  opacity: 0.9;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.6rem;
}

.contact-info p,
.contact-info span,
.contact-card p,
.contact-card span {
  color: rgba(255, 255, 255, 0.96);
}

.contact-info .eyebrow {
  color: var(--accent) !important;
}

.contact-hotline {
  margin-top: 1.6rem;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26);
}

.hotline-number {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
}

.hotline-number:hover,
.hotline-number:focus {
  color: var(--accent);
}

.contact-hotline p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.94);
}

.contact-methods {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-methods li {
  width: 100%;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.6rem;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(6px);
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.85s ease forwards;
  transition: transform 0.25s ease, background-color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-link:hover,
.contact-link:focus {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.12)
  );
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
}

.contact-methods li:nth-child(1) .contact-link {
  animation-delay: 0.1s;
}
.contact-methods li:nth-child(2) .contact-link {
  animation-delay: 0.22s;
}
.contact-methods li:nth-child(3) .contact-link {
  animation-delay: 0.34s;
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-icon img,
.contact-icon svg {
  width: 28px;
  height: 28px;
}

.contact-text {
  display: grid;
  gap: 0.2rem;
}

.contact-title {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.99);
}

.contact-value {
  color: rgba(255, 255, 255, 0.96);
}

.contact-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 2.4rem;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 1.3rem;
}

.contact-card h3 {
  margin: 0;
}

.contact-tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-tips li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.94);
}

.contact-tips li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 4.2rem 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -20% 10%;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.22),
    transparent 60%
  );
  opacity: 0.55;
  filter: blur(0.3rem);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.06),
    transparent 70%
  );
  animation: shimmer 11s infinite; */
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  position: relative;
  z-index: 1;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent);
}

.footer-meta {
  display: grid;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.credit {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 960px) {
  .hero-grid {
    gap: 2.4rem;
  }

  .hero-image.inset {
    margin-top: -80px;
    margin-right: 0;
    width: 72%;
  }

  .nav-actions {
    gap: 1rem;
  }

  .contact-grid {
    gap: 2.4rem;
  }
}

@media (max-width: 720px) {
  .site-header .nav {
    justify-content: space-between;
  }

  .nav-actions {
    gap: 0.8rem;
  }

  html.js-enabled .menu-toggle {
    display: inline-flex;
  }

  html.js-enabled .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(92vw, 320px);
    padding: 1.4rem;
    display: grid;
    gap: 0.85rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 60px rgba(12, 44, 68, 0.25);
    transform: translateY(14px);
    opacity: 0;
    pointer-events: none;
    z-index: 40;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  html.js-enabled .site-nav a {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.4rem 0;
  }

  html.js-enabled body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    animation: fadeDown 0.32s ease forwards;
  }

  .nav-cta {
    padding: 0.62rem 1.35rem;
    font-size: 0.96rem;
  }

  .language-toggle {
    padding: 0.38rem 0.85rem;
    font-size: 0.88rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    padding-top: calc(var(--header-height) + 1.4rem);
  }

  section {
    padding: 4rem 0;
  }

  section[id] {
    scroll-margin-top: calc(var(--header-height) + 12px);
  }

  .gallery-grid {
    grid-auto-columns: minmax(220px, 75vw);
  }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card {
    padding: 2rem;
  }

  .contact-grid {
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-rise,
  .contact-link {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .animate-float,
  .nav-cta,
  .site-footer::after {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.gallery-grid.is-dragging {
  cursor: grabbing;
}
