:root {
  --warm-white: #fffdfa;
  --light-beige: #f6efe4;
  --soft-blue: #dcecf8;
  --blue-deep: #2e5f87;
  --ink: #22313f;
  --muted: #5f6b76;
  --line: #e8e1d7;
  --card: #ffffff;
  --success: #26a96c;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 12px 28px rgba(34, 49, 63, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--warm-white), #fff);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 250, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue-deep);
  color: #fff;
  box-shadow: 0 10px 20px rgba(46, 95, 135, 0.24);
}

.btn-soft {
  background: var(--soft-blue);
  color: var(--blue-deep);
}

.hero {
  padding: 56px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card {
  background: linear-gradient(160deg, #fff, #fef8ef);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px;
}

.eyebrow {
  font-size: 0.8rem;
  color: var(--blue-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 8px;
}

.hero-card p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 1.04rem;
}

.slogan {
  margin-top: 18px;
  display: inline-block;
  background: var(--light-beige);
  border: 1px solid #ead9be;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #594a36;
}

.hero-image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  background: #f3f7fb;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.hero-image-card img {
  flex: 1;
  min-height: 360px;
  object-fit: cover;
  border-radius: 0;
}

.hero-meta {
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--muted);
  background: #fff;
}

.section {
  padding: 30px 0;
}

.section-head {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.section-head p {
  color: var(--muted);
  margin: 8px 0 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(34, 49, 63, 0.06);
  padding: 18px;
}

.card h3 {
  font-size: 1.08rem;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.tour-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-meta {
  font-size: 0.92rem;
  color: var(--blue-deep);
  font-weight: 700;
}

.tour-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.tour-list li {
  margin: 4px 0;
}

.reviews-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review {
  background: linear-gradient(180deg, #fff, #fcf7ee);
}

.review .name {
  margin-top: 10px;
  color: #7b6a57;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.trust-bar {
  margin-top: 20px;
  background: #f0f8ff;
  border: 1px solid #cae1f4;
  color: #305d82;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.form {
  display: grid;
  gap: 10px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #d8e0e8;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.paypal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ced8e6;
  color: #1f4c7a;
  font-weight: 700;
  font-size: 0.92rem;
}

.paypal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0e5ea8;
}

.site-footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  gap: 12px;
  padding: 22px 0 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.footer-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-copy {
  font-weight: 700;
  color: #4a5b67;
}

.copyright {
  color: #758390;
  font-size: 0.9rem;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  font-size: 1.45rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(38, 169, 108, 0.35);
}

.wa-float:hover {
  opacity: 0.95;
}

.admin-layout {
  display: grid;
  gap: 16px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.admin-group {
  display: grid;
  gap: 6px;
}

.admin-label {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-input,
.admin-select,
.admin-textarea {
  width: 100%;
  border: 1px solid #d8e0e8;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.admin-textarea {
  min-height: 90px;
  resize: vertical;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-note {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .reviews-wrap,
  .steps,
  .two-col,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 28px;
  }

  .nav {
    gap: 12px;
  }
}
