:root {
  --bg: #f4fbfd;
  --text: #0d2d38;
  --muted: #5f7982;
  --primary: #0b6f8f;
  --primary-dark: #084d63;
  --aqua: #33a9bd;
  --sand: #f5dca8;
  --card: rgba(255, 255, 255, .86);
  --border: rgba(13, 45, 56, .12);
  --shadow: 0 24px 70px rgba(8, 77, 99, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(245, 220, 168, .78), transparent 24rem),
    radial-gradient(circle at 8% 25%, rgba(51, 169, 189, .16), transparent 22rem),
    linear-gradient(180deg, #e7f8fc 0%, var(--bg) 42%, #ffffff 100%);
}

body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(244, 251, 253, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 22px;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(11, 111, 143, .28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--border);
}
.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 7px 9px;
  cursor: pointer;
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .04em;
}
.lang-btn.active {
  background: var(--primary);
  color: white;
}
.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(13, 45, 56, .16);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 6vw, 84px);
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -95px;
  height: 190px;
  background: url('wave.svg') repeat-x bottom / 900px 190px;
  opacity: .75;
  pointer-events: none;
}
.hero-content, .hero-card { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 850;
  font-size: 13px;
}
.banner-eyebrow { color: rgba(255, 255, 255, .78); }

h1, h2, h3 { margin: 0; line-height: 1.04; }
h1 {
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: -.065em;
  max-width: 860px;
}
h2 {
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: -.045em;
}
h3 { font-size: 24px; letter-spacing: -.025em; }
.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button, .contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 850;
  cursor: pointer;
  font-size: 16px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover, .contact-form button:hover { transform: translateY(-1px); }
.primary, .contact-form button {
  background: var(--primary);
  color: white;
  box-shadow: 0 16px 32px rgba(11, 111, 143, .2);
}
.primary:hover, .contact-form button:hover { background: var(--primary-dark); }
.secondary {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-card {
  padding: clamp(26px, 4vw, 38px);
  border-radius: 34px;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .68);
}
.hero-card h2 { color: var(--primary); margin-bottom: 12px; }
.hero-card p, .hero-card li { color: var(--muted); line-height: 1.55; }
.hero-card ul { padding-left: 20px; margin-bottom: 0; }
.card-label {
  margin: 0 0 8px;
  font-weight: 850;
  color: var(--primary) !important;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.sun {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--sand);
  margin-bottom: 28px;
  box-shadow: 0 0 0 18px rgba(245, 220, 168, .24), 0 12px 40px rgba(245, 180, 80, .22);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 clamp(18px, 6vw, 84px);
  transform: translateY(-32px);
  position: relative;
  z-index: 2;
}
.stats div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(8, 77, 99, .07);
}
.stats strong {
  display: block;
  font-size: 36px;
  color: var(--primary);
  letter-spacing: -.04em;
}
.stats span { color: var(--muted); font-weight: 750; }

.section { padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 84px); }
.section-tint { background: linear-gradient(180deg, rgba(183, 237, 245, .22), rgba(255, 255, 255, .62)); }
.section-head { max-width: 780px; margin-bottom: 34px; }
.section-lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
  margin: 18px 0 0;
}
.cards { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  min-height: 260px;
  box-shadow: 0 18px 50px rgba(8, 77, 99, .08);
}
.icon { font-size: 36px; display: inline-block; margin-bottom: 24px; }
.card p, .text-block p, .banner p, .muted, .step p, .destination-card p, .faq-list p, .form-note {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.destination-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: stretch;
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 18px;
  box-shadow: 0 18px 46px rgba(8, 77, 99, .07);
}
.destination-card h3 { margin-top: 8px; }
.destination-card p { margin-bottom: 8px; }
.destination-visual {
  min-height: 170px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.destination-visual:before,
.destination-visual:after {
  content: "";
  position: absolute;
  border-radius: 999px;
}
.destination-visual:before {
  width: 86px;
  height: 86px;
  right: 18px;
  top: 22px;
  background: rgba(245, 220, 168, .9);
}
.destination-visual:after {
  left: -20%;
  right: -20%;
  bottom: -28px;
  height: 76px;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 -26px 0 rgba(255, 255, 255, .26), 0 -52px 0 rgba(255, 255, 255, .14);
}
.mediterranean { background: linear-gradient(145deg, #0b6f8f, #5fd0df); }
.atlantic { background: linear-gradient(145deg, #24506a, #9bd1dc); }
.blacksea { background: linear-gradient(145deg, #0d2d38, #33a9bd); }
.islands { background: linear-gradient(145deg, #128f8a, #f5dca8); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  min-height: 260px;
  box-shadow: 0 18px 42px rgba(8, 77, 99, .07);
}
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11, 111, 143, .1);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 24px;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.text-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(8, 77, 99, .06);
}
.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.feature-list div {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
}
.feature-list div span:first-child { color: var(--primary); font-weight: 900; }

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 0 clamp(18px, 6vw, 84px);
  border-radius: 34px;
  padding: clamp(34px, 6vw, 70px);
  background:
    radial-gradient(circle at 82% 12%, rgba(245, 220, 168, .38), transparent 14rem),
    linear-gradient(135deg, var(--primary), var(--aqua));
  color: white;
  overflow: hidden;
}
.banner p { color: rgba(255, 255, 255, .86); max-width: 720px; }
.banner-button {
  flex: 0 0 auto;
  background: white;
  color: var(--primary);
}

.faq-section { padding-top: clamp(58px, 7vw, 94px); }
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 960px;
}
details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 12px 32px rgba(8, 77, 99, .05);
}
summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 18px;
}
details p { margin-bottom: 4px; }

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
}
.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-details a,
.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-weight: 750;
}
.contact-details span:first-child {
  color: var(--primary);
  width: 20px;
  flex: 0 0 20px;
}
.contact-form {
  display: grid;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--text);
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  background: #f8fcfd;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(11, 111, 143, .45);
  box-shadow: 0 0 0 4px rgba(11, 111, 143, .08);
}
textarea { resize: vertical; }
.form-note {
  margin: -2px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 1120px) {
  .nav { display: none; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-cta { display: none; }
  .hero, .split, .contact-section { grid-template-columns: 1fr; }
  .destination-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; }
  .stats { transform: none; margin-top: 20px; }
  .banner { align-items: flex-start; flex-direction: column; }
  .footer { flex-direction: column; }
}

@media (max-width: 640px) {
  .site-header { gap: 12px; }
  .logo { font-size: 19px; }
  .logo-mark { width: 32px; height: 32px; font-size: 25px; }
  .language-switcher { transform: scale(.94); transform-origin: right center; }
  .cards-3, .steps, .stats { grid-template-columns: 1fr; }
  .destination-card { grid-template-columns: 1fr; }
  .destination-visual { min-height: 140px; }
  .button, .contact-form button { width: 100%; }
  .section, .hero { padding-left: 16px; padding-right: 16px; }
  .stats, .banner { margin-left: 16px; margin-right: 16px; }
}
