:root {
  --ink: #14213d;
  --muted: #5b6474;
  --line: #d9e0e7;
  --paper: #ffffff;
  --mist: #f8f2e9;
  --teal: #006d77;
  --coral: #c9903d;
  --gold: #d6a844;
  --cream: #efe3d2;
  --shadow: 0 18px 55px rgba(20, 33, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 70px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 20, 24, 0.64), rgba(12, 20, 24, 0));
}

.brand,
.nav,
.header-tools,
.hero-actions,
.contact-actions,
.tour-footer,
.tour-meta,
.form-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 2px solid rgba(214, 168, 68, 0.78);
  border-radius: 50%;
  background: #fff8ef;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.38rem, 2.2vw, 2rem);
  font-weight: 500;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.9rem;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
}

.header-tools {
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.language-switch button {
  min-width: 32px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 142px clamp(22px, 6vw, 86px) 86px;
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("assets/kdonia-hero.png") center / cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 42%, rgba(0, 0, 0, 0) 0 20%, rgba(0, 0, 0, 0.3) 48%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(12, 16, 18, 0.8), rgba(12, 16, 18, 0.22) 58%, rgba(12, 16, 18, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-script {
  margin: 0 0 10px;
  color: #e2b45c;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-quote {
  position: absolute;
  right: clamp(18px, 5vw, 90px);
  bottom: 28%;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-style: italic;
  text-align: center;
}

.hero-actions,
.contact-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--coral);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
}

.button.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e3d3bd;
}

.trust-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 26px clamp(18px, 4vw, 42px);
  background: var(--cream);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
}

.trust-icon {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-self: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--coral) !important;
  background: rgba(255, 255, 255, 0.45);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(22px, 6vw, 80px);
}

.intro,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.intro p,
.split p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tour-card,
.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.tour-card img,
.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tour-body,
.package-body {
  padding: 22px;
}

.tour-meta {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.tour-body p {
  min-height: 78px;
  color: var(--muted);
}

.tour-footer {
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.icon-button {
  color: #fff;
  background: var(--teal);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  border-left: 4px solid var(--coral);
  background: #fff;
}

.steps span {
  color: var(--teal);
  font-weight: 900;
}

.vietnam-packages {
  background: #eef5f3;
}

.trabzon-packages {
  background: #fff;
}

.rize-packages {
  background: #eef5f3;
}

.paris-packages {
  background: #fff;
}

.travel-tips {
  background: #fbf6ee;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tip-card {
  display: block;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.tip-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.tip-icon.skyscanner {
  background: #e8f8fc;
}

.tip-icon.agoda {
  background: #fff3f0;
}

.tip-icon.gyg {
  background: #eaf7ef;
}

.tip-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.platform-logo {
  width: min(220px, 100%);
  height: 54px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left center;
}

.agoda-logo {
  width: 110px;
  height: 72px;
  border-radius: 50%;
  object-fit: contain;
}

.gyg-logo {
  width: min(230px, 100%);
  height: 76px;
}

.skyscanner-logo,
.gyg-logo {
  mix-blend-mode: normal;
}

[dir="rtl"] .platform-logo {
  object-position: right center;
}

.tip-card p {
  min-height: 96px;
  margin-bottom: 14px;
  color: var(--muted);
}

.discount-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 10px 10px 0;
  vertical-align: middle;
}

.discount-code {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px dashed var(--coral);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--ink);
  background: #fff8f1;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.copy-code {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal);
  background: #fff;
  cursor: pointer;
}

.copy-code svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-code.copied {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.tip-card a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--teal);
  font-weight: 900;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.package-body {
  display: grid;
  gap: 16px;
}

.package-body p {
  min-height: 82px;
  margin-bottom: 0;
  color: var(--muted);
}

.mini-itinerary {
  display: grid;
  gap: 8px;
  min-height: 238px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.blank-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.blank-price span {
  color: var(--muted);
  font-weight: 800;
}

.blank-price strong {
  min-width: 110px;
  border-bottom: 1px solid var(--line);
}

.istanbul {
  background: #fff;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 22px;
  margin-top: 22px;
}

.price-layout.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--mist);
}

.price-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 7px;
  object-fit: cover;
}

.featured-price {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(90deg, rgba(20, 33, 61, 0.9), rgba(0, 109, 119, 0.72)),
    url("https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=1400&q=82")
    center / cover;
}

.price-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.featured-price p {
  color: rgba(255, 255, 255, 0.86);
}

.price-table,
.price-list,
.transfer-grid {
  display: grid;
  gap: 10px;
}

.price-table div,
.price-list li,
.transfer-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 50px;
  border: 1px solid rgba(217, 224, 231, 0.88);
  border-radius: 6px;
  padding: 12px 14px;
  background: #fff;
}

.featured-price .price-table div {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.92);
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-table span,
.price-list span,
.transfer-grid span {
  color: var(--muted);
}

.price-table strong,
.price-list strong,
.transfer-grid strong {
  white-space: nowrap;
  color: var(--teal);
}

.transfer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transfer-grid div {
  display: grid;
  justify-items: start;
  min-height: 112px;
}

.transfer-grid strong {
  font-size: 2rem;
}

.fine-print {
  font-size: 0.92rem;
}

[dir="rtl"] body {
  font-family: Arial, "Tahoma", sans-serif;
}

[dir="rtl"] .site-header,
[dir="rtl"] .brand,
[dir="rtl"] .tour-footer,
[dir="rtl"] .tour-meta,
[dir="rtl"] .price-table div,
[dir="rtl"] .price-list li,
[dir="rtl"] .site-footer {
  direction: rtl;
}

[dir="rtl"] .steps li {
  border-left: 0;
  border-right: 4px solid var(--coral);
}

[dir="rtl"] .contact-actions {
  justify-content: flex-start;
}

.planner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  min-height: 720px;
  background: #fff;
}

.planner-media {
  background:
    linear-gradient(90deg, rgba(6, 45, 52, 0.28), rgba(6, 45, 52, 0)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=82")
    center / cover;
}

.planner-form {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 58px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-row {
  align-items: start;
  gap: 14px;
}

.form-row label {
  flex: 1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact {
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.contact h2 {
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 6vw, 80px);
  color: var(--muted);
  background: #fff;
  font-size: 0.92rem;
}

.site-footer > div:first-child {
  display: grid;
  gap: 4px;
}

.site-footer [data-i18n="footerBrand"] {
  color: var(--ink);
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px 8px 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.social-link span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  font-size: 0.68rem;
  line-height: 1;
}

.social-link span img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-link.instagram span {
  background: #d62976;
}

.social-link.tiktok span {
  background: #111;
}

.social-link.facebook span {
  background: #1877f2;
}

.social-link.youtube span {
  background: #ff0033;
}

.social-link:hover {
  border-color: var(--coral);
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .trust-strip,
  .intro,
  .split,
  .planner,
  .contact,
  .tour-grid,
  .tips-grid,
  .package-grid,
  .price-layout,
  .price-layout.compact {
    grid-template-columns: 1fr;
  }

  .package-body p,
  .mini-itinerary {
    min-height: 0;
  }

  .planner-media {
    min-height: 330px;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-action {
    display: none;
  }

  .header-tools {
    margin-left: auto;
    gap: 8px;
  }

  .language-switch {
    gap: 2px;
    padding: 3px;
  }

  .language-switch button {
    min-width: 30px;
    min-height: 30px;
    font-size: 0.78rem;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 18px 46px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-quote {
    position: static;
    margin-top: 18px;
    text-align: left;
  }

  .button,
  .icon-button {
    width: 100%;
  }

  .tour-footer,
  .form-row,
  .price-table div,
  .price-list li,
  .transfer-grid,
  .blank-price,
  .site-footer {
    display: grid;
  }

  .social-links {
    justify-content: flex-start;
  }
}
