@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

img {
  max-width: 100%;
}

:root {
  --color-bg: #0f172a;
  --color-bg-light: #1e293b;
  --color-text: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-border: #334155;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Cormorant Garamond', serif;
  --spacing-section: 64px;
  --spacing-inner: 48px;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #0f172a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  background: var(--color-bg-light);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: static;
  z-index: 100;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 769px) {
  .site-header {
    position: sticky;
    top: 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.desktop-nav a {
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--color-accent);
}

.header-notice {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 64px 24px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  background: linear-gradient(to right, #fff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.marquee-container {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track .separator {
  margin: 0 16px;
  opacity: 0.6;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.story-section, .tours-section, .gallery-section, .routes-section, .services-section, .about-section, .contact-section {
  padding: var(--spacing-section) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-grid > *,
.about-grid > *,
.contact-grid > *,
.tours-grid > *,
.routes-grid > *,
.services-grid > *,
.reviews-grid > * {
  min-width: 0;
  max-width: 100%;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

.story-text p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tours-section {
  background: var(--color-bg-light);
}

.tours-section h2 {
  font-size: 2.5rem;
  margin-bottom: 48px;
  text-align: center;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tour-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.tour-card.featured {
  border-color: var(--color-accent);
  background: linear-gradient(to bottom, rgba(245, 158, 11, 0.05), var(--color-bg));
}

.tour-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.tour-badge.new {
  background: #10b981;
  color: #fff;
}

.tour-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  margin-top: 8px;
}

.tour-location, .tour-duration {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 16px 0 24px;
}

.tour-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.tour-features li {
  padding: 6px 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.tour-features li:last-child {
  border-bottom: none;
}

.gallery-wrapper {
  margin-top: 48px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.thumb-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s ease;
  aspect-ratio: 16/9;
}

.thumb-btn.active {
  border-color: var(--color-accent);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.thumb-btn:hover img, .thumb-btn.active img {
  opacity: 1;
}

.gallery-cta {
  text-align: center;
  margin-top: 32px;
}

.routes-section {
  background: var(--color-bg-light);
}

.routes-section h2 {
  font-size: 2.5rem;
  margin-bottom: 48px;
  text-align: center;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.route-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.route-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.route-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.route-card:hover .route-image img {
  transform: scale(1.05);
}

.route-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.5px;
}

.route-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.route-content h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.route-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.6;
}

.route-meta {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.route-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.route-meta i {
  color: var(--color-accent);
  font-size: 0.9rem;
}

.services-section {
  background: var(--color-bg-light);
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 48px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.service-card i {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  color: var(--color-text);
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews-integrated h3 {
  font-size: 1.8rem;
  margin-bottom: 32px;
  text-align: center;
  color: var(--color-text);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-bg-light);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.review-stars {
  color: var(--color-accent);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.review-card p {
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 1.15rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item i {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-top: 4px;
  width: 24px;
  text-align: center;
}

.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin: 0;
}

.contact-form-wrapper {
  background: var(--color-bg-light);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-group input,
.form-group select {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--color-accent);
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  color: var(--color-text-muted);
}

.site-footer {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand p {
  color: var(--color-text-muted);
  margin-top: 24px;
  max-width: 350px;
  font-size: 1.05rem;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.update-date {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  margin-top: 4px;
}

.footer-contact p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 32px 0;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 900px;
}

.copyright {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
}

.legal-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-section) 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--color-text);
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.legal-content p, .legal-content li {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.thanks-container {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
}

.thanks-box {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}

.thanks-box .logo {
  justify-content: center;
  margin-bottom: 32px;
}

.thanks-box h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

.thanks-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.thanks-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .tours-grid, .routes-grid, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .story-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: 40px;
    --spacing-inner: 32px;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 16px;
    padding: 12px 16px;
  }

  .logo {
    justify-content: center;
  }

  .logo a {
    justify-content: center;
  }

  .header-notice {
    flex: 0 0 auto;
  }

  .desktop-nav {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }

  .desktop-nav ul {
    flex-wrap: wrap;
    gap: 8px 14px;
    justify-content: center;
  }

  .desktop-nav a {
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .tours-grid, .routes-grid, .services-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .header-notice {
    word-break: break-all;
    white-space: normal;
  }

  .footer-col,
  .footer-contact,
  .footer-brand {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .hero-content {
    padding: 40px 16px;
  }

  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .thanks-box {
    padding: 32px 20px;
  }

  .legal-content {
    padding: 24px 16px;
  }

  .story-text h2,
  .tours-section h2,
  .routes-section h2,
  .services-section h2,
  .about-section h2,
  .contact-info h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}