* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #b35a0b;
  color: #fff;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  border-radius: 0 0 6px 0;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 10%;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  flex-wrap: wrap;
  gap: 12px;
}

header nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 28px;
  min-width: 0;
}

header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #b35a0b;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: color 0.2s;
}

header .logo img {
  height: 28px;
  width: auto;
  display: block;
}

header nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

header nav ul li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

header nav ul li a:hover,
header nav ul li a:focus-visible {
  color: #b35a0b;
  outline: none;
}

header nav ul li a.active {
  color: #b35a0b;
  font-weight: 600;
}

header .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #444;
}

header .header-right a {
  color: #1a1a1a;
  text-decoration: none;
}

header .header-right a:hover,
header .header-right a:focus-visible {
  color: #b35a0b;
  outline: none;
}

main {
  flex: 1;
  margin-top: 72px;
  padding: 0;
}

main > .container {
  padding: 32px 10% 48px;
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 10% 64px;
  background: #1a1a2e center/cover no-repeat;
  background-image: linear-gradient(
      rgba(26, 26, 46, 0.75),
      rgba(26, 26, 46, 0.65)
    ),
    url("images/hero-travel-desk.jpg");
  color: #fff;
}

.hero-inner {
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #b35a0b;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #b35a0b;
  transition: background 0.2s, color 0.2s;
}

.btn:hover,
.btn:focus-visible {
  background: #8f4708;
  border-color: #8f4708;
  color: #fff;
  outline: none;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #fff;
  color: #1a1a2e;
  border-color: #1a1a2e;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.section-description {
  color: #555;
  max-width: 640px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.destination-card,
.card-content {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.destination-card:hover,
.card-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.destination-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.destination-card .destination-card-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.destination-card .destination-card-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-card .destination-card-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.78));
}

.destination-card .destination-card-container h3 {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: auto;
  z-index: 1;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  display: inline-block;
  background-color: #111;
  padding: 4px 10px;
  border-radius: 6px;
  max-width: calc(100% - 32px);
  line-height: 1.3;
  opacity: 1;
}

.destination-card .card-body {
  padding: 18px 20px 22px;
}

.destination-card .card-body p {
  font-size: 0.95rem;
  color: #555;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #b35a0b;
}

.region-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}

.region-container img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 320px;
}

.plans h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
}

.plans h2:first-child {
  margin-top: 0;
}

.plans p {
  margin-bottom: 14px;
  color: #444;
}

.plans ul {
  margin: 12px 0 16px 1.25rem;
  color: #444;
}

.plans ul li {
  margin-bottom: 8px;
}

.region-block {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}

.region-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.region-block h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ddd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  margin-top: 24px;
  align-items: start;
}

.contact-aside {
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-aside h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.contact-aside p,
.contact-aside address {
  font-style: normal;
  color: #555;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.form-panel {
  background: #fff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.form-panel > p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid #b35a0b;
  outline-offset: 2px;
  border-color: #b35a0b;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

fieldset {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

legend {
  font-weight: 600;
  padding: 0 8px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin-bottom: 10px;
  cursor: pointer;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn-submit {
  cursor: pointer;
  font-size: 1rem;
}

footer {
  background: #111;
  color: #eee;
  margin-top: auto;
}

footer h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 10%;
}

footer .footer-top .footer-content {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
}

footer .footer-top .footer-content p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
}

footer .footer-top .footer-link ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .footer-top .footer-link ul li {
  list-style: none;
}

footer .footer-top .footer-link ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.2s;
}

footer .footer-top .footer-link ul li a:hover,
footer .footer-top .footer-link ul li a:focus-visible {
  color: #f0a35a;
  outline: none;
}

footer .footer-subscribe {
  min-width: 220px;
}

footer .footer-subscribe input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #222;
  color: #fff;
  margin-bottom: 10px;
  font-family: inherit;
}

footer .footer-subscribe input:focus-visible {
  outline: 2px solid #b35a0b;
  outline-offset: 2px;
}

footer .footer-subscribe button {
  padding: 10px 20px;
  background: #b35a0b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

footer .footer-subscribe button:hover,
footer .footer-subscribe button:focus-visible {
  background: #8f4708;
  outline: none;
}

footer .footer-bottom {
  text-align: center;
  padding: 20px 10%;
  border-top: 1px solid #333;
  color: #999;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .region-container,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .region-container img {
    max-height: 240px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 5%;
  }

  main > .container {
    padding: 24px 5% 40px;
  }

  .hero {
    padding: 64px 5% 48px;
    min-height: 360px;
  }

  footer .footer-top {
    padding: 32px 5%;
  }

  footer .footer-bottom {
    padding: 16px 5%;
  }

  header nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  header nav ul {
    gap: 8px 20px;
  }
}

@media (max-width: 480px) {
  main {
    margin-top: 120px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .form-panel {
    padding: 20px;
  }
}
