:root {
  --navy: #071c2e;
  --navy2: #0d3048;
  --gold: #d4ad62;
  --gold2: #efd08a;
  --cream: #f7f4ee;
  --white: #fff;
  --text: #1e2c35;
  --muted: #6c7880;
  --line: rgba(7, 28, 46, 0.11);
  --shadow: 0 18px 55px rgba(7, 28, 46, 0.1);
  --radius: 24px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
.container {
  width: min(var(--max), 92%);
  margin: auto;
}
h1,
h2,
h3 {
  font-family: system-ui;
  color: var(--navy);
  line-height: 1.08;
}
h1 {
  font-size: clamp(48px, 7vw, 82px);
}
h2 {
  font-size: clamp(36px, 5vw, 56px);
}
h3 {
  font-size: 26px;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}
.section {
  padding: 95px 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.section-head p {
  color: var(--muted);
  margin-top: 15px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--gold2);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 17px 0;
  transition: 0.3s;
}
.navbar.scrolled {
  background: rgba(7, 28, 46, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 10px 35px #0002;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}
.brand-mark {
  width: 45px;
  height: 45px;
  border: 1px solid #fff9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 700 22px Georgia;
  position: relative;
}
.brand-mark:after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid #fff5;
  border-radius: 50%;
}
.brand-text b {
  display: block;
  font-size: 14px;
  letter-spacing: 0.09em;
}
.brand-text small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: #ccd8df;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover {
  color: var(--gold2);
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
}
.hero {
  min-height: 800px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  background: linear-gradient(90deg, #041522df, #0415228c 52%, #04152245),
    url("../assets/ja-hero.jpg") center/cover;
}
.hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(transparent, #fff);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 75px;
}
.hero .eyebrow {
  color: #efd08a;
}
.hero h1 {
  color: #fff;
}
.hero h1 em {
  color: var(--gold2);
  font-style: normal;
}
.hero p {
  font-size: 18px;
  color: #e5edf1;
  max-width: 660px;
  margin: 20px 0 30px;
  line-height: 1.8;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stats {
  display: flex;
  gap: 38px;
  margin-top: 42px;
}
.stats strong {
  font: 700 30px Georgia;
  display: block;
}
.stats span {
  font-size: 11px;
  color: #c9d3d8;
}
.searchbox {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 55px;
  width: min(390px, 90%);
  padding: 24px;
  background: #fff;
  border-radius: 22px;
  color: var(--text);
  box-shadow: 0 25px 70px #0004;
}
.searchbox h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
input,
select,
textarea {
  width: 100%;
  font: inherit;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  outline: none;
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.full {
  grid-column: 1/-1;
}
.searchbox .btn {
  width: 100%;
  margin-top: 12px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards.four {
  grid-template-columns: repeat(4, 1fr);
}
.destination-card {
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.destination-card img {
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.destination-card:hover img {
  transform: scale(1.07);
}
.destination-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, #000c);
}
.card-copy {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 22px;
  right: 22px;
  color: #fff;
}
.card-copy span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold2);
}
.card-copy h3 {
  color: #fff;
  margin: 3px 0;
}
.card-copy p {
  font-size: 12px;
  color: #d6e0e4;
}
.cream {
  background: var(--cream);
}
.package-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.package-card:hover {
  transform: translateY(-5px);
}
.package-image {
  height: 235px;
  position: relative;
}
.package-image img {
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 99px;
  padding: 7px 11px;
  font-size: 10px;
}
.package-body {
  padding: 20px;
}
.package-body h3 {
  margin-bottom: 8px;
}
.meta {
  display: flex;
  gap: 15px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 16px;
}
.package-footer {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.package-footer strong {
  color: var(--navy);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.service {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}
.service:last-child {
  border: 0;
}
.service i {
  color: var(--gold);
  font-size: 27px;
  margin-bottom: 20px;
}
.service h3 {
  font-size: 21px;
}
.service p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}
.dark {
  background: var(--navy);
  color: #fff;
}
.dark h2 {
  color: #fff;
}
.dark p {
  color: #b9c7cf;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.photo {
  height: 540px;
  border-radius: 28px;
  overflow: hidden;
}
.photo img {
  height: 100%;
  object-fit: cover;
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.benefit {
  display: flex;
  gap: 12px;
}
.benefit i {
  color: var(--gold);
  margin-top: 5px;
}
.benefit h4 {
  font-size: 15px;
}
.benefit p {
  font-size: 12px;
  margin-top: 2px;
}
.review {
  background: #f7fafb;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
}
.review-card p {
  font: 18px/1.55 Georgia;
  color: var(--navy);
  margin: 13px 0 20px;
}
.person {
  display: flex;
  gap: 10px;
  align-items: center;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.cta {
  padding: 75px 0;
}
.cta-box {
  padding: 65px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(100deg, #071c2ef5, #071c2eaa),
    url("../assets/ja-hero.jpg") center/cover;
}
.cta-box h2 {
  color: #fff;
  max-width: 700px;
}
.cta-box p {
  max-width: 650px;
  margin: 15px 0 24px;
  color: #d3dee4;
}
.page-hero {
  padding: 170px 0 90px;
  background: linear-gradient(90deg, #071c2ef0, #071c2e9c),
    url("../assets/ja-hero.jpg") center/cover;
  color: #fff;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(46px, 6vw, 70px);
}
.page-hero p {
  max-width: 650px;
  color: #d8e1e6;
  margin-top: 16px;
}
.breadcrumb {
  font-size: 12px;
  color: #d4e0e6;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: var(--gold2);
}
.detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 35px;
}
.detail-image {
  height: 540px;
  border-radius: 25px;
  overflow: hidden;
}
.detail-image img {
  height: 100%;
  object-fit: cover;
}
.detail-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  height: max-content;
}
.detail-panel h2 {
  font-size: 35px;
}
.price {
  font-size: 25px;
  font-weight: 800;
  color: var(--navy);
  margin: 15px 0;
}
.detail-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.detail-list li {
  font-size: 13px;
  color: var(--muted);
}
.detail-list i {
  color: var(--gold);
  width: 22px;
}
.tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  margin-top: 50px;
}
.tab {
  padding: 12px 18px;
  border: 0;
  background: none;
  font-weight: 700;
  cursor: pointer;
}
.tab.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.tab-content {
  padding-top: 25px;
}
.itinerary {
  display: grid;
  gap: 14px;
}
.day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.day b {
  color: var(--gold);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
}
.contact-info {
  background: var(--navy);
  color: #fff;
  border-radius: 25px;
  padding: 32px;
}
.contact-info h2 {
  color: #fff;
  font-size: 40px;
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}
.contact-item i {
  color: var(--gold);
  margin-top: 5px;
}
.contact-item p {
  font-size: 13px;
  color: #c5d1d7;
}
.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
footer {
  background: #041521;
  color: #b9c6cd;
  padding: 65px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 45px;
}
.footer-grid h4 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 13px;
}
.footer-brand p {
  font-size: 13px;
  max-width: 340px;
  margin-top: 15px;
}
.socials {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #fff2;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.copyright {
  border-top: 1px solid #fff1;
  padding-top: 18px;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
}
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 12px 30px #25d36655;
}
.admin-body {
  background: #f4f6f8;
}
.admin-shell {
  display: grid;
  grid-template-columns: 245px 1fr;
  min-height: 100vh;
}
.sidebar {
  background: var(--navy);
  color: #fff;
  padding: 25px 18px;
}
.sidebar h2 {
  color: #fff;
  font-size: 24px;
  margin: 15px 0 25px;
}
.side-nav {
  display: grid;
  gap: 6px;
}
.side-nav a {
  padding: 11px 13px;
  border-radius: 10px;
  color: #c9d5db;
  font-size: 13px;
}
.side-nav a:hover,
.side-nav a.active {
  background: #ffffff12;
  color: #fff;
}
.admin-main {
  padding: 30px;
}
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.admin-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.admin-stat span {
  font-size: 11px;
  color: var(--muted);
}
.admin-stat strong {
  display: block;
  font-size: 30px;
  color: var(--navy);
  margin-top: 4px;
}
.admin-table {
  margin-top: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: auto;
}
.admin-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
.admin-table th {
  color: var(--navy);
  background: #fafbfc;
}
@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }
  .menu {
    display: block;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 4%;
    right: 4%;
    padding: 12px;
    background: #071c2efb;
    border-radius: 15px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open a {
    padding: 10px;
  }
  .cards.four,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .detail-panel {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
}
@media (max-width: 650px) {
  .section {
    padding: 70px 0;
  }
  .hero {
    min-height: 930px;
  }
  .hero-content {
    padding-top: 100px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero p {
    font-size: 15px;
  }
  .stats {
    gap: 18px;
  }
  .searchbox {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 35px;
  }
  .form-grid,
  .form-row,
  .cards,
  .cards.four,
  .service-grid,
  .benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .full {
    grid-column: auto;
  }
  .destination-card {
    height: 320px;
  }
  .cta-box {
    padding: 40px 24px;
  }
  .page-hero {
    padding-top: 140px;
  }
  .detail-image {
    height: 340px;
  }
  .day {
    grid-template-columns: 1fr;
  }
  .copyright {
    display: block;
  }
  .copyright span {
    display: block;
    margin-top: 7px;
  }
}
