:root {
  --ink: #152331;
  --muted: #5d6b78;
  --line: #dfe7e9;
  --paper: #fffaf3;
  --white: #ffffff;
  --mist: #e6f4f1;
  --ocean: #0e7c86;
  --blue: #1b5f8c;
  --sun: #f59e0b;
  --coral: #e76f51;
  --leaf: #2f855a;
  --shadow: 0 18px 45px rgba(21, 35, 49, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 64px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 21px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 231, 233, 0.9);
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 20px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.topbar-link {
  color: var(--white);
  font-weight: 700;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
}

.brand img {
  width: 212px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 11px;
  border-radius: 8px;
  color: #324353;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-dropdown summary:hover,
.nav-dropdown.is-active summary,
.nav-dropdown[open] summary {
  color: var(--ocean);
  background: var(--mist);
}

.nav-dropdown {
  position: relative;
  z-index: 3;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
  gap: 7px;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.nav-dropdown[open] summary::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 290px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 26px;
  top: -7px;
  width: 12px;
  height: 12px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: var(--white);
  transform: rotate(45deg);
}

.dropdown-menu a {
  justify-content: space-between;
  min-height: 40px;
  padding: 9px 10px;
  font-weight: 800;
}

.site-nav .nav-cta {
  margin-left: 4px;
  color: var(--white);
  background: var(--ocean);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  color: var(--white);
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 620px;
  padding: 82px 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 34, 0.82), rgba(7, 22, 34, 0.56) 46%, rgba(7, 22, 34, 0.18)),
    linear-gradient(180deg, rgba(7, 22, 34, 0.16), rgba(7, 22, 34, 0.32)),
    var(--hero-image) center / cover no-repeat;
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 10px;
}

.hero-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(231, 111, 81, 0.22);
}

.button-primary:hover {
  background: #cf5d42;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: -34px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  gap: 12px;
}

.trust-band div {
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.trust-band strong {
  font-size: 24px;
}

.trust-band span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.content-band,
.split-band,
.contact-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 24px;
}

.content-band.muted {
  max-width: none;
  background: var(--paper);
}

.content-band.muted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-header p {
  font-size: 17px;
}

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

.category-card,
.tour-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(21, 35, 49, 0.06);
}

.category-card-image,
.tour-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}

.category-card img,
.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.category-card:hover img,
.tour-card:hover img {
  transform: scale(1.04);
}

.category-card div {
  padding: 22px;
}

.category-card span,
.tour-category {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card h3 {
  margin-top: 8px;
}

.category-card p {
  margin-top: 12px;
}

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

.tour-image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.tour-body {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: 22px;
}

.tour-body h3 {
  margin-top: 8px;
}

.tour-body p:not(.tour-category) {
  margin-top: 12px;
}

.tour-meta {
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--ocean);
  font-weight: 900;
}

.text-link:hover {
  color: var(--coral);
}

.split-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.split-band p + p {
  margin-top: 16px;
}

.not-found-cta .button {
  margin-top: 22px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 44px;
  align-items: start;
}

.intro-grid p {
  margin-top: 18px;
  font-size: 18px;
}

.highlight-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.highlight-panel span,
.contact-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(14, 124, 134, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: #244653;
  font-size: 14px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 20px 20px;
}

.related-strip {
  padding-top: 30px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ocean);
  font-weight: 850;
}

.page-hero {
  padding: 96px 24px;
  background:
    linear-gradient(90deg, rgba(21, 35, 49, 0.92), rgba(21, 35, 49, 0.74)),
    url("https://www.onenationtravel.com/wp-content/uploads/2025/01/turkey-tours-istanbul-cappadocia-packages.webp") center / cover no-repeat;
  color: var(--white);
}

.page-hero > div {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.compact-hero {
  padding-top: 78px;
  padding-bottom: 78px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 44px;
}

.contact-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.contact-copy p {
  margin-top: 18px;
  font-size: 18px;
}

.contact-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #263848;
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfdade;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  margin-top: 16px;
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(14, 124, 134, 0.18);
  border-color: var(--ocean);
}

.contact-form .button {
  margin-top: 18px;
  width: 100%;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.form-notice.success {
  color: #14532d;
  background: #dcfce7;
}

.form-notice.error {
  color: #7f1d1d;
  background: #fee2e2;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-cta h2 {
  max-width: 760px;
  color: var(--white);
  font-size: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: 236px;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.footer-grid .footer-logo img {
  width: 212px;
  height: auto;
  filter: none;
}

.footer-grid img {
  width: 212px;
  height: auto;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a.footer-logo {
  display: inline-flex;
  margin-top: 0;
  color: inherit;
}

.footer-grid a:hover {
  color: var(--sun);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .footer-cta h2 {
    font-size: 36px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 104px;
    display: none;
    max-height: calc(100svh - 126px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .trust-band,
  .category-grid,
  .tour-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header,
  .split-band,
  .intro-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .footer-cta h2 {
    font-size: 30px;
  }

  .topbar {
    display: none;
  }

  .nav-shell {
    padding: 12px 16px;
  }

  .brand img {
    width: 184px;
  }

  .site-nav {
    top: 76px;
  }

  .hero {
    min-height: 600px;
    padding: 70px 18px;
    background:
      linear-gradient(180deg, rgba(7, 22, 34, 0.86), rgba(7, 22, 34, 0.55)),
      var(--hero-image) center / cover no-repeat;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .trust-band {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 18px;
  }

  .content-band,
  .split-band,
  .contact-section {
    padding: 58px 18px;
  }

  .page-hero {
    padding: 72px 18px;
  }

  .category-grid,
  .tour-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .tour-body {
    min-height: auto;
  }

  .footer-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 20px;
  }
}
