:root {
  --navy: #0b2545;
  --navy-700: #133a6b;
  --navy-50: #f3f6fb;
  --accent: #b78838;
  --accent-dark: #97701f;
  --ink: #1a2238;
  --muted: #5b6679;
  --line: #e3e7ee;
  --line-strong: #cdd4e0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ===== UIKit overrides (strict corporate) ===== */
.uk-button-primary {
  background-color: var(--navy);
  color: #fff;
  border-radius: 2px;
  border: 1px solid var(--navy);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 0 26px;
  transition: background-color .15s ease, border-color .15s ease;
}
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: var(--navy-700);
  border-color: var(--navy-700);
  color: #fff;
}

.uk-button-default {
  background-color: #fff;
  color: var(--navy);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  text-transform: none;
  font-weight: 600;
}
.uk-button-default:hover,
.uk-button-default:focus {
  background-color: var(--navy-50);
  color: var(--navy);
  border-color: var(--navy);
}

.uk-input,
.uk-select:not([multiple]):not([size]),
.uk-textarea {
  border-radius: 2px;
  border: 1px solid var(--line-strong);
  background-color: #fff;
  color: var(--ink);
}
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  border-color: var(--navy);
  background-color: #fff;
}

.uk-form-label {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.uk-section-muted { background-color: var(--navy-50); }

/* ===== Navbar ===== */
.uk-navbar-container:not(.uk-navbar-transparent) {
  background-color: #fff;
  border-bottom: 1px solid var(--line);
}
.site-nav .uk-container { display: flex; }
.site-nav .uk-navbar-left,
.site-nav .uk-navbar-right { min-height: 80px; }
.site-nav .uk-navbar-right {
  margin-left: auto;
  gap: 0;
}

.uk-navbar-sticky {
  box-shadow: 0 2px 12px rgba(11, 37, 69, 0.06);
}
.uk-navbar-nav > li { position: relative; }
.uk-navbar-nav > li > a {
  position: relative;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0.2px;
  min-height: 80px;
  padding: 0 16px;
}
.uk-navbar-nav > li > a:hover,
.uk-navbar-nav > li.uk-active > a {
  color: var(--navy);
}
.uk-navbar-nav > li > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 26px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
  pointer-events: none;
}
.uk-navbar-nav > li > a:hover::after,
.uk-navbar-nav > li.uk-active > a::after { transform: scaleX(1); }

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0 16px 0 0;
  line-height: 0;
}
.brand-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 640px) {
  .brand-img { height: 48px; }
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  padding: 0 16px;
  border-left: 1px solid var(--line);
  height: 28px;
  align-self: center;
  white-space: nowrap;
  transition: color .15s ease;
}
.nav-phone:hover { color: var(--accent-dark); }
.nav-phone span[uk-icon] { color: var(--accent); }

.nav-cta {
  margin-left: 14px;
  height: 40px;
  line-height: 38px;
  align-self: center;
  white-space: nowrap;
}

/* Language dropdown */
.nav-lang {
  position: relative;
  align-self: center;
  margin-left: 14px;
}
.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.nav-lang-btn:hover { border-color: var(--navy); color: var(--navy); }
.nav-lang-btn span[uk-icon] { color: var(--muted); }

.nav-lang-dropdown.uk-dropdown {
  padding: 6px 0;
  min-width: 170px;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 10px 28px rgba(11, 37, 69, 0.12);
  background: #fff;
  margin-top: 6px !important;
}
.nav-lang-dropdown .uk-nav > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.nav-lang-dropdown .uk-nav > li > a:hover {
  background: var(--navy-50);
  color: var(--navy);
}
.nav-lang-dropdown .uk-nav > li.active > a {
  background: var(--navy);
  color: #fff;
}
.nav-lang-dropdown .uk-nav > li.active > a .lang-code { color: #fff; }
.lang-code {
  display: inline-block;
  min-width: 26px;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 0.76rem;
  color: var(--navy);
}

/* Offcanvas language pills */
.offcanvas-lang {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}
.offcanvas-lang a {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 0.8rem;
  border-radius: 2px;
}
.offcanvas-lang a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 90px 0 110px;
  background:
    linear-gradient(180deg, #fff 0%, var(--navy-50) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background:
    linear-gradient(135deg, rgba(11,37,69,0.92), rgba(11,37,69,0.78)),
    url("./resources/dest/hero-back.jpg") center/cover no-repeat;
    /* url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat; */
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  display: none;
}
@media (min-width: 960px) {
  .hero::before { display: block; }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-left: 38px;
  position: relative;
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin: 0 0 18px;
}
@media (max-width: 640px) {
  .hero-title { font-size: 1.9rem; }
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
}
.hero-trust span[uk-icon] { color: var(--accent); }

.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: 26px 28px 8px;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
}
.hero-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.stat-grid > div { border-bottom: 1px solid var(--line); }
.stat-grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
.stat-grid > div:nth-last-child(-n+2) { border-bottom: 0; }

.stat-cell {
  padding: 20px 14px;
  text-align: center;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* ===== Section heads ===== */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin: 0 0 12px;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

/* ===== Tour cards ===== */
.tour-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: none;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  border-color: var(--navy);
  box-shadow: 0 14px 32px rgba(11, 37, 69, 0.1);
  transform: translateY(-3px);
}
.tour-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.tour-card:hover .tour-media img { transform: scale(1.05); }

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  border-radius: 2px;
}
.tour-badge-alt { background: var(--accent); }
.tour-badge-new { background: #2f7d4a; }

.uk-card-body { padding: 22px 22px 24px; }
.tour-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.tour-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.tour-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 18px;
  min-height: 38px;
}
.tour-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.tour-price-from {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.tour-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}

/* ===== Special offer ===== */
.special-banner {
  background: var(--navy);
  color: #fff;
  padding: 50px 56px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.special-banner::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 38%;
  background:
    linear-gradient(90deg, rgba(11,37,69,1), rgba(11,37,69,0.25)),
    url("./resources/dest/summer-back.jpg") right/cover no-repeat;
    /* url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80") right/cover no-repeat; */
  pointer-events: none;
}
.special-banner > * { position: relative; z-index: 1; }

.special-eyebrow { color: var(--accent); }
.special-title {
  color: #fff;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
  line-height: 1.25;
}
.special-desc {
  color: #c7d3e6;
  max-width: 560px;
  margin: 0 0 18px;
}
.special-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}
.special-list li {
  color: #fff;
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding-left: 22px;
}
.special-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .special-banner { padding: 36px 24px; }
  .special-banner::after { display: none; }
}

/* ===== Why us ===== */
.why-grid > div { display: flex; }
.why-cell {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 24px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.why-cell:hover {
  border-color: var(--navy);
  box-shadow: 0 10px 22px rgba(11, 37, 69, 0.07);
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  background: var(--navy-50);
  margin-bottom: 16px;
}
.why-cell h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.why-cell p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== Reviews ===== */
.reviews-block { margin-top: 70px; }
.reviews-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 36px;
  position: relative;
  padding-bottom: 16px;
}
.reviews-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--accent);
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--accent);
  letter-spacing: 4px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.review-text {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 22px;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.review-avatar {
  width: 42px; height: 42px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.review-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}
.review-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.slider-arrow {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line-strong);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { color: var(--accent); border-color: var(--accent); }
.uk-dotnav > * > * {
  border-color: var(--line-strong);
  background-color: transparent;
}
.uk-dotnav > .uk-active > * {
  background-color: var(--navy);
  border-color: var(--navy);
}

/* ===== FAQ ===== */
.faq-accordion {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-accordion > li {
  background: #fff;
  border: 1px solid var(--line);
  margin-top: 10px;
  padding: 0 22px;
}
.faq-accordion > li:first-child { margin-top: 0; }
.faq-accordion .uk-accordion-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: none;
  letter-spacing: 0;
}
.faq-accordion .uk-accordion-title::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  background: none;
  width: auto;
  height: auto;
  margin: 0;
  transition: transform .2s ease;
}
.faq-accordion .uk-accordion-title::before { display: none; }
.faq-accordion .uk-open > .uk-accordion-title::after {
  content: "−";
}
.faq-accordion .uk-accordion-content {
  color: var(--muted);
  margin-top: 0;
  padding: 0 0 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.faq-accordion .uk-accordion-content p { margin: 0; line-height: 1.65; }

/* ===== Contact ===== */
.contact-section { padding-bottom: 100px; }
.contact-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--navy-50);
  border-left: 3px solid var(--accent);
}
.contact-row > span[uk-icon] { color: var(--navy); margin-top: 2px; }
.contact-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
a.contact-value:hover { color: var(--accent-dark); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  border-top: 3px solid var(--navy);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: #bdc7d8;
  padding: 70px 0 24px;
  border-top: 4px solid var(--accent);
}
.footer-brand {
  display: inline-flex;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  line-height: 0;
}
.footer-brand img {
  height: 96px;
  width: auto;
  display: block;
}
.footer-about {
  margin-top: 18px;
  color: #9caccb;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 360px;
}
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  transition: background-color .15s ease, border-color .15s ease;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-heading {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-list {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: #bdc7d8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .15s ease;
}
.footer-list a:hover { color: var(--accent); }

.legal-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  font-size: 0.85rem;
}
.legal-list dt {
  color: #8da0c4;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 12px;
}
.legal-list dt:first-child { margin-top: 0; }
.legal-list dd {
  color: #fff;
  margin: 4px 0 0;
  font-weight: 500;
  line-height: 1.4;
}

.footer-main { padding-bottom: 40px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: #8da0c4;
}

/* ===== Mobile offcanvas ===== */
.uk-offcanvas-bar { background: var(--navy); }
.offcanvas-logo {
  background: #fff;
  border-radius: 4px;
  padding: 8px;
  display: inline-flex;
  margin-bottom: 8px;
}
.offcanvas-logo img {
  height: 72px;
  width: auto;
  display: block;
}
.uk-offcanvas-bar .uk-nav-default > li > a {
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.uk-offcanvas-bar .uk-nav-default > li > a:hover { color: var(--accent); }
.uk-offcanvas-bar a { color: #fff; }
