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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #2d5a4f;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #4a4a4a;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2d5a4f;
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d5a4f 0%, #4a8c7a 50%, #c9a86a 100%);
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #fff;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #2d5a4f;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-secondary {
  display: inline-block;
  background: #2d5a4f;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #234539;
  transform: translateY(-2px);
}

.btn-text {
  color: #2d5a4f;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 12px;
}

.btn-text:hover {
  text-decoration: underline;
}

.features {
  padding: 80px 0;
  background: #fafafa;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin: 0 auto 24px;
}

.gradient-1 { background: linear-gradient(135deg, #2d5a4f, #4a8c7a); }
.gradient-2 { background: linear-gradient(135deg, #c9a86a, #d4b87a); }
.gradient-3 { background: linear-gradient(135deg, #4a8c7a, #6ba894); }

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.feature-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.destinations {
  padding: 80px 0;
}

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 56px;
  color: #1a1a1a;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.destination-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.destination-card:hover {
  transform: translateY(-4px);
}

.destination-image {
  height: 240px;
  width: 100%;
}

.gradient-dest-1 { background: linear-gradient(135deg, #d97757, #e89b7f); }
.gradient-dest-2 { background: linear-gradient(135deg, #c9506d, #d97089); }
.gradient-dest-3 { background: linear-gradient(135deg, #5b9fd9, #7db5e3); }

.destination-info {
  padding: 24px;
}

.destination-info h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.destination-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

.destination-price {
  color: #2d5a4f;
  font-weight: 600;
  font-size: 15px;
}

.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d5a4f, #4a8c7a);
  color: #fff;
}

.cta-content {
  text-align: center;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #fff;
}

.cta p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 48px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand p {
  color: #999;
  margin-top: 8px;
  font-size: 14px;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  color: #999;
  font-size: 14px;
}

.contact-email {
  color: #fff;
  font-weight: 500;
  margin-top: 4px;
}

.booking-hero,
.experiences-hero {
  background: linear-gradient(135deg, #2d5a4f, #4a8c7a);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.booking-hero h1,
.experiences-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #fff;
}

.subtitle {
  font-size: 18px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.booking-form-section {
  padding: 80px 0;
  background: #fafafa;
}

.booking-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.booking-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2d5a4f;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.sidebar-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  gap: 16px;
}

.timeline-number {
  width: 32px;
  height: 32px;
  background: #2d5a4f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.timeline-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.timeline-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.trust-card {
  background: linear-gradient(135deg, #2d5a4f, #4a8c7a);
  color: #fff;
}

.trust-card h4 {
  color: #fff;
}

.trust-card p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.experiences-grid-section {
  padding: 80px 0;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}

.experience-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.experience-visual {
  height: 240px;
  width: 100%;
}

.gradient-exp-1 { background: linear-gradient(135deg, #d97757, #e89b7f); }
.gradient-exp-2 { background: linear-gradient(135deg, #7a9c59, #96b876); }
.gradient-exp-3 { background: linear-gradient(135deg, #5b9fd9, #7db5e3); }
.gradient-exp-4 { background: linear-gradient(135deg, #c9506d, #d97089); }
.gradient-exp-5 { background: linear-gradient(135deg, #c9a86a, #d4b87a); }

.experience-content {
  padding: 32px 32px 32px 0;
}

.experience-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #666;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.experience-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.experience-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.experience-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #999;
  margin-bottom: 16px;
}

.experiences-cta {
  text-align: center;
  padding: 64px 0;
  background: #fafafa;
  border-radius: 12px;
}

.experiences-cta h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.experiences-cta p {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .feature-grid,
  .destination-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .experience-item { grid-template-columns: 1fr; }
  .experience-visual { height: 200px; }
  .nav-links { gap: 16px; }
}