:root {
  --ink: #10251f;
  --muted: #6e7b77;
  --green: #0d4f3d;
  --green2: #176b52;
  --mint: #eaf3ed;
  --cream: #f7f7f1;
  --orange: #f59c3d;
  --line: #e4e9e5;
  --white: #fff;
  --danger: #c94b4b;
  --shadow: 0 22px 60px rgba(21, 57, 45, 0.12);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fbfcf8;
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 37, 31, 0.06);
}
.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--orange),
    #ffbd67 45%,
    var(--green) 46%
  );
  display: grid;
  place-items: center;
  color: #fff;
  font-family: Manrope;
  font-weight: 800;
}
.brand strong {
  font: 800 19px Manrope;
}
.brand small {
  display: block;
  font-size: 10px;
  color: #8a9692;
  margin-top: -2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.main-nav a:hover {
  color: var(--green2);
}
.nav-pill,
.btn-primary {
  background: var(--green);
  color: #fff !important;
}
.nav-pill {
  padding: 10px 16px;
  border-radius: 12px;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 13px;
  border: 0;
  font: 700 14px "DM Sans";
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--green);
  box-shadow: 0 10px 26px rgba(13, 79, 61, 0.2);
}
.btn-secondary {
  background: #eaf3ed;
  color: var(--green);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-ghost,
.btn-outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-warning {
  background: #fff3df;
  color: #9a6219;
}
.btn-danger {
  background: #ffe7e7;
  color: #a93636;
}
.btn-small {
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 10px;
}
.hero {
  padding: 36px 0 28px;
}
.hero-shell {
  min-height: 600px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(247, 247, 241, 0.98) 0%,
      rgba(247, 247, 241, 0.92) 40%,
      rgba(247, 247, 241, 0.14) 68%
    ),
    url("../img/hero-bg.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}
.hero-copy {
  max-width: 650px;
  padding: 86px 0 70px 64px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green2);
}
.hero h1 {
  font: 800 clamp(42px, 5vw, 72px)/1.02 Manrope;
  margin: 14px 0 18px;
  letter-spacing: -2.8px;
}
.hero h1 span {
  color: var(--green);
}
.hero p {
  font-size: 17px;
  color: #4f5f59;
  max-width: 470px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.search-panel {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: calc(100% - 70px);
  background: #fff;
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(14, 44, 34, 0.18);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 8px;
}
.search-item {
  padding: 8px 14px;
  border-right: 1px solid var(--line);
}
.search-item:last-of-type {
  border-right: 0;
}
.search-item label {
  display: block;
  font-size: 11px;
  color: #7d8a86;
}
.search-item input,
.search-item select {
  width: 100%;
  border: 0;
  outline: 0;
  font: 600 13px "DM Sans";
  color: var(--ink);
  background: transparent;
  padding-top: 2px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 26px auto 58px;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 18px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--mint);
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 800;
}
.trust-item strong {
  font-size: 13px;
}
.trust-item small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.section {
  padding: 30px 0 64px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-title {
  font: 800 30px Manrope;
  letter-spacing: -1px;
}
.section-sub {
  color: var(--muted);
  margin-top: 6px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.package-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.25s;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.pkg-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.package-card-body {
  padding: 18px;
}
.package-card h3 {
  font: 800 19px Manrope;
}
.destination {
  color: var(--muted);
  font-size: 13px;
  margin: 5px 0;
}
.meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0;
}
.price {
  font: 800 18px Manrope;
  color: var(--orange);
}
.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}
.category-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.category-chip {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}
.promo {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: 28px;
  overflow: hidden;
  background: var(--green);
  color: #fff;
}
.promo-visual {
  background: url("../img/about.jpg") center/cover;
  min-height: 330px;
}
.promo-copy {
  padding: 52px;
}
.promo-copy h2 {
  font: 800 36px/1.1 Manrope;
  margin: 10px 0 14px;
}
.promo-copy p {
  color: #dce8e2;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.feature strong {
  display: block;
  margin-bottom: 4px;
}
.feature p {
  font-size: 12px;
  color: var(--muted);
}
.form-wrapper {
  max-width: 560px;
  margin: 48px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(16, 37, 31, 0.08);
}
.form-wrapper.wide {
  max-width: 840px;
}
.form-wrapper h2 {
  font: 800 28px Manrope;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 7px;
  color: #365047;
}
.form-group input,
.form-group select,
.form-group textarea,
.search-box input {
  width: 100%;
  border: 1px solid #dfe6e1;
  border-radius: 12px;
  background: #fbfcfa;
  padding: 12px 13px;
  font: 500 14px "DM Sans";
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #8eb5a8;
  box-shadow: 0 0 0 3px rgba(13, 79, 61, 0.08);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-footer-link {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}
.form-footer-link a {
  color: var(--green);
  font-weight: 700;
}
.hint {
  color: var(--muted);
  font-size: 11px;
}
.alert {
  padding: 13px 16px;
  border-radius: 12px;
  margin: 14px 0;
}
.alert-success {
  background: #e9f7ee;
  color: #27613d;
}
.alert-error {
  background: #fff0f0;
  color: #9e3636;
}
.page-hero {
  padding: 54px 0 28px;
}
.page-hero h1 {
  font: 800 42px Manrope;
  letter-spacing: -1.5px;
}
.page-hero p {
  color: var(--muted);
  margin-top: 8px;
}
.search-box {
  display: flex;
  gap: 10px;
}
.search-box input {
  min-width: 250px;
}
.detail-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 36px 0 70px;
}
.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.detail-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}
.detail-gallery img:first-child {
  grid-column: 1/-1;
  height: 360px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  position: sticky;
  top: 94px;
  height: max-content;
}
.detail-card h1 {
  font: 800 34px Manrope;
}
.detail-card p {
  color: var(--muted);
}
.site-footer {
  background: #10251f;
  color: #d9e4df;
  margin-top: 55px;
  padding: 54px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.brand-footer {
  color: #fff;
  margin-bottom: 14px;
}
.site-footer p {
  max-width: 440px;
  color: #aebdb7;
  font-size: 13px;
}
.site-footer h4 {
  font: 800 13px Manrope;
  margin-bottom: 12px;
  color: #fff;
}
.site-footer a:not(.brand) {
  display: block;
  color: #b7c5c0;
  margin: 8px 0;
  font-size: 13px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 35px;
  padding-top: 18px;
  font-size: 11px;
  color: #8ea19a;
}
.dashboard-body {
  background: #f4f7f3;
}
.dash-top {
  height: 70px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 90;
}
.dash-wrapper {
  display: flex;
  min-height: calc(100vh - 70px);
}
.sidebar {
  width: 250px;
  background: #10251f;
  color: #fff;
  padding: 24px 16px;
  flex-shrink: 0;
}
.side-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}
.side-user img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}
.side-user strong {
  display: block;
  font-size: 13px;
}
.role-tag {
  display: block;
  color: #a9b9b3;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.side-nav {
  display: grid;
  gap: 5px;
}
.side-nav a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 11px;
  color: #bdcbc6;
  font-size: 13px;
  font-weight: 600;
}
.side-nav a:hover,
.side-nav a.active {
  background: #1c3a31;
  color: #fff;
}
.main-content {
  flex: 1;
  padding: 32px;
  min-width: 0;
}
.main-content > h1 {
  font: 800 29px Manrope;
  letter-spacing: -0.8px;
}
.sub {
  color: var(--muted);
  font-size: 13px;
  margin: 3px 0 22px;
}
.glass-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 25px;
}
.stat-card {
  text-align: left;
}
.stat-card .num {
  font: 800 28px Manrope;
  color: var(--green);
}
.stat-card .label {
  color: var(--muted);
  font-size: 12px;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.table-wrapper {
  overflow: auto;
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
table.data-table th {
  text-align: left;
  background: #f6f8f6;
  color: #63716c;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
table.data-table th,
table.data-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
table.data-table tr:hover td {
  background: #fafcf9;
}
.thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
}
.badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.badge-active,
.badge-confirmed,
.badge-paid,
.badge-answered {
  background: #e3f5e9;
  color: #28613c;
}
.badge-suspended,
.badge-cancelled,
.badge-failed {
  background: #ffe7e7;
  color: #a23b3b;
}
.badge-pending,
.badge-open {
  background: #fff1d9;
  color: #9a651a;
}
.action-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.planner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.planner-option {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fafcf9;
}
.planner-option label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.planner-option strong {
  font-size: 13px;
}
.planner-option small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.img-thumb-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.img-thumb-row img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 18px;
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    width: 220px;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hero-shell {
    min-height: 670px;
    background:
      linear-gradient(
        180deg,
        rgba(247, 247, 241, 0.98) 0%,
        rgba(247, 247, 241, 0.8) 50%,
        rgba(247, 247, 241, 0.08) 100%
      ),
      url("../img/hero-mountains.svg") center/cover;
  }
  .hero-copy {
    padding: 55px 28px;
  }
  .search-panel {
    grid-template-columns: 1fr 1fr;
    bottom: 18px;
  }
  .grid,
  .about-grid,
  .promo,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .sidebar {
    width: 210px;
  }
  .detail-shell {
    grid-template-columns: 1fr;
  }
  .detail-card {
    position: static;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .hero-shell {
    border-radius: 22px;
  }
  .hero-copy {
    padding: 42px 22px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .search-panel {
    position: static;
    transform: none;
    width: calc(100% - 30px);
    margin: 0 auto 18px;
    grid-template-columns: 1fr;
  }
  .search-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-strip,
  .grid,
  .about-grid,
  .promo,
  .stats-row,
  .feature-list,
  .form-row,
  .planner-grid {
    grid-template-columns: 1fr;
  }
  .promo-visual {
    min-height: 230px;
  }
  .promo-copy {
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .dash-wrapper {
    display: block;
  }
  .sidebar {
    width: 100%;
    padding: 12px;
  }
  .side-user {
    display: none;
  }
  .side-nav {
    display: flex;
    overflow: auto;
  }
  .side-nav a {
    white-space: nowrap;
  }
  .main-content {
    padding: 20px 14px;
  }
  .dash-top {
    padding: 0 14px;
  }
  .dash-top .brand small {
    display: none;
  }
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .detail-gallery img,
  .detail-gallery img:first-child {
    height: 250px;
  }
  .page-hero h1 {
    font-size: 34px;
  }
  .search-box {
    width: 100%;
  }
  .search-box input {
    min-width: 0;
  }
}
