*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --coral: #ff6b6b;
  --coral-dark: #e85555;
  --sky: #4ecdc4;
  --sky-dark: #3dbdb5;
  --gold: #ffd93d;
  --navy: #1a1a2e;
  --navy-light: #2d2d44;
  --text: #333340;
  --text-light: #6b6b7b;
  --bg: #fffbf7;
  --bg-alt: #f5f0eb;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-text {
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
}

.logo-text small {
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 46, 0.55) 0%, rgba(78, 205, 196, 0.35) 50%, rgba(255, 107, 107, 0.3) 100%),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=80') center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  color: var(--white);
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text);
}

.about-features {
  list-style: none;
  margin-top: 24px;
}

.about-features li {
  padding: 8px 0;
  font-weight: 500;
}

.about-card-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(78, 205, 196, 0.2);
}

.about-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.about-card-inner h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-card-inner ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-card-inner li {
  padding: 6px 0;
}

.about-note {
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--bg-alt);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

/* Tours */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tour-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tour-featured .tour-image {
  min-height: 320px;
}

.tour-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tour-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.tour-body blockquote {
  font-size: 0.9rem;
  color: var(--text-light);
  border-left: 3px solid var(--sky);
  padding-left: 14px;
  margin-bottom: 14px;
  font-style: italic;
}

.tour-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.tour-route {
  font-size: 0.85rem;
  color: var(--sky-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.tour-details {
  list-style: none;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.tour-details li {
  padding: 3px 0;
}

.tour-list {
  list-style: none;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.tour-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--bg-alt);
}

.tour-list.compact li {
  padding: 4px 0;
  border: none;
}

.tour-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--bg-alt);
}

.tour-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--coral);
}

.tour-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

.tours-more {
  text-align: center;
  margin-top: 48px;
}

.tours-more p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: none;
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--sky);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.review-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.review-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral);
}

/* Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.tip-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.tip-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.tip-card p,
.tip-card li {
  font-size: 0.88rem;
  color: var(--text-light);
}

.tip-card ul {
  padding-left: 0;
  list-style: none;
}

.tip-card li {
  padding: 4px 0;
}

.tip-note {
  margin-top: 12px;
  font-weight: 500;
  color: var(--text) !important;
}

/* Directions */
.directions {
  text-align: center;
  padding: 60px 0;
}

.directions h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.directions-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.directions-tags span {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.directions-tags span:hover {
  transform: scale(1.05);
}

/* Contact */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact .section-tag {
  color: var(--sky);
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.contact-text p {
  opacity: 0.88;
  margin-bottom: 12px;
}

.contact-ps {
  font-size: 0.9rem;
  opacity: 0.7 !important;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--white);
  transition: all var(--transition);
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.contact-btn-icon {
  font-size: 1.5rem;
}

.contact-btn strong {
  display: block;
  font-size: 1rem;
}

.contact-btn small {
  opacity: 0.7;
  font-size: 0.82rem;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 28px 0;
  text-align: center;
}

.footer-inner p {
  font-size: 0.85rem;
}

.footer-note {
  margin-top: 4px;
  font-size: 0.8rem !important;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .tour-featured {
    grid-template-columns: 1fr;
  }

  .tour-featured .tour-image {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-cta {
    text-align: center;
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .tour-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .tour-footer .btn {
    width: 100%;
  }
}
