@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #0b1d33;
  --primary-light: #132d4f;
  --secondary: #147d8a;
  --secondary-light: #1a9dab;
  --accent: #c8a24e;
  --accent-light: #e0c170;
  --light: #f5f3ed;
  --lighter: #faf9f6;
  --dark: #060e1a;
  --text: #2c3e50;
  --text-light: #7a8ea3;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(11, 29, 51, 0.1);
  --shadow-lg: 0 12px 48px rgba(11, 29, 51, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--lighter);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--accent);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header p {
  margin-top: 12px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 125, 138, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 29, 51, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-notice {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 14, 26, 0.7) 0%, rgba(11, 29, 51, 0.5) 50%, rgba(6, 14, 26, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 162, 78, 0.15);
  border: 1px solid rgba(200, 162, 78, 0.4);
  color: var(--accent-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-widgets {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.widget {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  border-radius: var(--radius);
}

.widget i {
  font-size: 1.2rem;
  color: var(--accent);
}

.widget strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.widget span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.story {
  padding: 64px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-text p {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.7;
}

.story-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--secondary);
}

.stat span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.story-float {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.excursions-preview {
  padding: 64px 0;
  background: var(--light);
}

.exc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.exc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.exc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.exc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.exc-card:hover .exc-img img {
  transform: scale(1.05);
}

.exc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exc-badge-new {
  background: var(--secondary);
  color: var(--white);
}

.exc-badge-premium {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent-light);
}

.exc-body {
  padding: 20px;
}

.exc-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.exc-meta i {
  color: var(--secondary);
  margin-right: 4px;
}

.exc-body h3 {
  margin-bottom: 8px;
}

.exc-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.exc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--light);
}

.exc-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}

.exc-price small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-light);
}

.exc-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.exc-link:hover {
  color: var(--secondary-light);
  gap: 10px;
}

.exc-cta {
  text-align: center;
  margin-top: 40px;
}

.scenic {
  padding: 64px 0;
  background: var(--white);
}

.scenic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.scenic-info p {
  color: var(--text-light);
  margin: 16px 0 24px;
  line-height: 1.7;
}

.scenic-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.scenic-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.scenic-list i {
  color: var(--secondary);
  font-size: 0.85rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 125, 138, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.scenic-main {
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-lg);
}

.scenic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.scenic-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.scenic-thumb {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  height: 64px;
  padding: 0;
  background: none;
  transition: var(--transition);
}

.scenic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenic-thumb.active,
.scenic-thumb:hover {
  border-color: var(--secondary);
}

.services-section {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--light) 0%, var(--lighter) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20, 125, 138, 0.1), rgba(20, 125, 138, 0.05));
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.service-icon i {
  font-size: 1.3rem;
  color: var(--secondary);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

.services-cta .btn-outline {
  color: var(--secondary);
  border-color: var(--secondary);
}

.services-cta .btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}

.experience {
  padding: 64px 0;
  background: var(--primary);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.exp-image {
  position: relative;
}

.exp-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.exp-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(200, 162, 78, 0.9);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}

.exp-text .section-tag {
  color: var(--accent-light);
}

.exp-text h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.exp-text > p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.exp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.exp-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.exp-feat i {
  color: var(--accent);
}

.reviews {
  padding: 64px 0;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--lighter);
  border: 1px solid rgba(11, 29, 51, 0.06);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
}

.review-stars {
  margin-bottom: 14px;
}

.review-stars i {
  color: var(--accent);
  font-size: 0.9rem;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.booking {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.booking-form-wrap h2 {
  margin-bottom: 12px;
}

.booking-form-wrap > p {
  color: var(--text-light);
  margin-bottom: 28px;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(11, 29, 51, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--white);
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(20, 125, 138, 0.1);
}

.form-check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-check input {
  width: 18px;
  height: 18px;
  min-height: auto;
}

.form-check label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light);
}

.booking-faq {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-faq h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.faq-item {
  border-bottom: 1px solid var(--light);
  padding: 14px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--secondary);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(200, 162, 78, 0.15);
  border: 1px solid rgba(200, 162, 78, 0.3);
  border-radius: 50%;
  margin-bottom: 20px;
}

.cta-icon i {
  font-size: 1.6rem;
  color: var(--accent-light);
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  line-height: 1.7;
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 48px 0 32px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-contact-item {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-light);
  transform: translateY(-3px);
}

.page-hero {
  padding: 140px 0 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-section {
  padding: 64px 0;
}

.page-section:nth-child(even) {
  background: var(--white);
}

.exc-detail {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.exc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.exc-detail-img {
  height: 100%;
  min-height: 320px;
}

.exc-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exc-detail-body {
  padding: 32px;
}

.exc-detail-body h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.exc-detail-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.exc-detail-meta i {
  color: var(--secondary);
  margin-right: 4px;
}

.exc-detail-body > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.exc-includes {
  margin-bottom: 20px;
}

.exc-includes h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}

.exc-includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.exc-includes li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.exc-includes li i {
  color: var(--secondary);
  font-size: 0.7rem;
}

.exc-route h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}

.exc-route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exc-route-tags span {
  background: var(--light);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--text);
}

.exc-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--light);
}

.exc-detail-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.exc-detail-price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 29, 51, 0.8);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
}

.routes-list {
  display: grid;
  gap: 20px;
}

.route-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-card-img {
  height: 100%;
  min-height: 180px;
}

.route-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card-body {
  padding: 24px;
}

.route-card-body h3 {
  margin-bottom: 8px;
}

.route-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-tags span {
  background: var(--light);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 14px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-card i {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-list {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 125, 138, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-item-icon i {
  color: var(--secondary);
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  margin-bottom: 20px;
}

.thanks-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 64px;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thanks-card {
  text-align: center;
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: 100%;
}

.thanks-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.thanks-card h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.thanks-card p {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 125, 138, 0.1);
  border-radius: 50%;
}

.thanks-icon i {
  font-size: 2rem;
  color: var(--secondary);
}

@media (max-width: 1024px) {
  .exc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo a {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .logo a span {
    font-size: 1.1rem;
    word-break: break-word;
  }

  .nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(11, 29, 51, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    transition: var(--transition);
    z-index: 999;
    margin-left: 0;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .burger {
    display: flex;
    flex-shrink: 0;
    margin-left: 0;
    position: relative;
    z-index: 1001;
  }

  .header-notice {
    display: none;
  }

  .page-hero {
    padding: 110px 0 48px;
  }

  .contact-info-list {
    padding-top: 24px;
  }

  .exc-detail-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .exc-detail-footer .btn-primary {
    padding: 10px 18px;
    font-size: 0.82rem;
    min-height: 40px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

  .hero-widgets {
    flex-direction: column;
    align-items: center;
  }

  .story-grid,
  .scenic-grid,
  .exp-grid,
  .booking-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .exc-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .exc-detail-grid {
    grid-template-columns: 1fr;
  }

  .exc-detail-img {
    min-height: 220px;
  }

  .exc-includes ul {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    grid-template-columns: 1fr;
  }

  .route-card-img {
    min-height: 180px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-stats {
    justify-content: center;
  }

  .story-image img {
    height: 280px;
  }

  .scenic-main {
    height: 240px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .footer-disclaimer p {
    font-size: 0.8rem;
  }

  .footer-col a {
    font-size: 0.85rem;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }
}

.legal-section {
  padding: 64px 0;
  background: var(--lighter);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  word-break: break-word;
}

.last-updated {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light);
}

.legal-content h2:first-of-type {
  margin-top: 24px;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--primary-light);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}

.legal-content strong {
  color: var(--primary);
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light);
}

.legal-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 20px 0 28px;
}

.legal-table-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--light);
}

.legal-table-row:last-child {
  border-bottom: none;
}

.legal-table-label {
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  background: rgba(20, 125, 138, 0.04);
  display: flex;
  align-items: center;
}

.legal-table-value {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .legal-section {
    padding: 40px 0;
  }

  .legal-content {
    padding: 24px 16px;
  }

  .legal-content h2 {
    font-size: 1.4rem;
    margin-top: 28px;
  }

  .legal-content h3 {
    font-size: 1.15rem;
    margin-top: 20px;
  }

  .legal-content p {
    font-size: 0.95rem;
  }

  .legal-table-row {
    grid-template-columns: 1fr;
  }

  .legal-table-label {
    padding: 10px 16px 4px;
    border-bottom: none;
  }

  .legal-table-value {
    padding: 4px 16px 12px;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="zoom-in"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) scale(0.98) !important;
}

.story-grid > *,
.scenic-grid > *,
.exp-grid > *,
.booking-grid > *,
.about-grid > *,
.contact-grid > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

@media (max-width: 640px) {
  .header-notice {
    word-break: break-all;
  }

  .footer .logo a {
    flex-direction: column;
  }

  .footer .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-col {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .booking-form-wrap,
  .contact-form-wrap {
    padding: 20px 16px;
  }

  .hero-content {
    padding: 90px 16px 48px;
  }

  .page-hero {
    padding: 100px 0 32px;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
}