@font-face {
  font-family: 'New Stencil tfb';
  src: url('New Stencil tfb.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Color Palette - Premium & Vibrant */
  --primary-color: #ff4500;
  /* Orange Red - Energetic */
  --primary-dark: #cc3700;
  --secondary-color: #2c3e50;
  /* Dark Blue Grey - Professional */
  --accent-color: #00d2d3;
  /* Cyan - Fresh */
  --text-color: #333333;
  --bg-color: #f4f4f9;
  --white: #ffffff;
  --dark-bg: #1a1a1a;

  /* Spacing */
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;

  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.top-notice {
  width: 100%;
  background: var(--secondary-color);
  color: var(--white);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.95rem;
}

.top-notice strong {
  color: var(--accent-color);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: 12px var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text {
  color: #FFD700;
  font-family: 'New Stencil tfb', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  -webkit-text-stroke: 2px black;
  paint-order: stroke fill;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-links a {
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-cta {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('inicial.jpg') no-repeat center center/cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 380px var(--spacing-md) 0;
  margin-top: 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-lg) var(--spacing-md);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--secondary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

/* Destinations Section */
.destinations-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.destination-card {
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-img {
  width: 100%;
  height: 200px;
  background-color: #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 500;
}

.btn-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  text-align: left;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: #555;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.social-links a {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('inicial.jpg') no-repeat center center/cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 200px var(--spacing-md) 0;
  margin-top: 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-lg) var(--spacing-md);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--secondary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

/* Destinations Section */
.destinations-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.destination-card {
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-img {
  width: 100%;
  height: 200px;
  background-color: #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 500;
}

.btn-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  text-align: left;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: #555;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.social-links a {
  margin: 0 var(--spacing-sm);
  font-size: 1.2rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  z-index: 1100;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('inicial.jpg') no-repeat center center/cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 200px var(--spacing-md) 0;
  margin-top: 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-lg) var(--spacing-md);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--secondary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

/* Destinations Section */
.destinations-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.destination-card {
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-img {
  width: 100%;
  height: 200px;
  background-color: #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 500;
}

.btn-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  text-align: left;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: #555;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.social-links a {
  margin: 0 var(--spacing-sm);
  font-size: 1.2rem;
}

/* Responsive */
.logo-img {
  height: 70px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .logo {
    flex-direction: column;
    gap: 5px;
  }

  .logo-img {
    height: 60px;
  }

  .logo-text {
    font-size: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
  }

  .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
  }

  /* Features Section */
  .features {
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .features h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    color: var(--secondary-color);
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
  }

  .feature-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
  }

  .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
  }

  .feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
  }

  /* Destinations Section */
  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .destination-card {
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .destination-img {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 500;
  }

  .btn-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
  }

  .btn-link:hover {
    text-decoration: underline;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .testimonial-card {
    text-align: left;
    background-color: #f9f9f9;
    border: 1px solid #eee;
  }

  .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
  }

  .testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: #555;
  }

  .testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
  }

  /* Footer */
  footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .social-links a {
    margin: 0 var(--spacing-sm);
    font-size: 1.2rem;
  }

  /* Responsive */
  .logo-img {
    height: 70px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .nav-links a {
      font-size: 1rem;
    }

    .logo {
      flex-direction: column;
      gap: 5px;
    }

    .logo-img {
      height: 60px;
    }

    .logo-text {
      font-size: 1.8rem;
      color: #FFD700;
      font-family: 'New Stencil tfb', sans-serif;
      background: transparent;
      padding: 0;
      text-transform: uppercase;
      -webkit-text-stroke: 2px black;
      paint-order: stroke fill;
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: var(--spacing-lg);
      text-align: center;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      font-family: var(--font-heading);
    }

    .stat-label {
      font-size: 1.1rem;
      font-weight: 500;
      opacity: 0.9;
    }

    /* Features Section */
    .features {
      padding: var(--spacing-xl) var(--spacing-md);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .features h2 {
      font-size: 2.5rem;
      margin-bottom: var(--spacing-xl);
      color: var(--secondary-color);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--spacing-lg);
    }

    .feature-card {
      background: var(--white);
      padding: var(--spacing-lg);
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: var(--spacing-md);
    }

    .feature-card h3 {
      margin-bottom: var(--spacing-sm);
      color: var(--secondary-color);
    }

    /* Destinations Section */
    .destinations-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .destination-card {
      text-align: left;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .destination-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .destination-img {
      width: 100%;
      height: 200px;
      background-color: #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      font-weight: 500;
    }

    .btn-link {
      display: inline-block;
      margin-top: 10px;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .btn-link:hover {
      text-decoration: underline;
    }

    /* Testimonials */
    .testimonials-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonial-card {
      text-align: left;
      background-color: #f9f9f9;
      border: 1px solid #eee;
    }

    .stars {
      color: #ffc107;
      font-size: 1.2rem;
      margin-bottom: var(--spacing-sm);
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: var(--spacing-md);
      color: #555;
    }

    .testimonial-author {
      font-weight: 700;
      color: var(--secondary-color);
    }

    /* Footer */
    footer {
      background-color: var(--secondary-color);
      color: var(--white);
      padding: var(--spacing-xl) var(--spacing-md);
      text-align: center;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: var(--spacing-md);
    }

    .social-links a {
      margin: 0 var(--spacing-sm);
      font-size: 1.2rem;
    }

    /* Responsive */
    .logo-img {
      height: 70px;
    }

    /* Mobile Intro (Hidden by default on desktop) */
    .mobile-intro {
      display: none;
      padding: 40px 20px;
      text-align: center;
      background-color: var(--white);
    }

    .mobile-intro h1 {
      font-size: 2rem;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .mobile-intro p {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
      }

      .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: var(--spacing-lg);
        text-align: center;
      }

      .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .stat-number {
        font-size: 3rem;
        font-weight: 800;
        font-family: var(--font-heading);
      }

      .stat-label {
        font-size: 1.1rem;
        font-weight: 500;
        opacity: 0.9;
      }

      /* Features Section */
      .features {
        padding: var(--spacing-xl) var(--spacing-md);
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
      }

      .features h2 {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-xl);
        color: var(--secondary-color);
      }

      .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-lg);
      }

      .feature-card {
        background: var(--white);
        padding: var(--spacing-lg);
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
      }

      .feature-card:hover {
        transform: translateY(-5px);
      }

      .feature-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: var(--spacing-md);
      }

      .feature-card h3 {
        margin-bottom: var(--spacing-sm);
        color: var(--secondary-color);
      }

      /* Destinations Section */
      .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }

      .destination-card {
        text-align: left;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .destination-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .destination-img {
        width: 100%;
        height: 200px;
        background-color: #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #888;
        font-weight: 500;
      }

      .btn-link {
        display: inline-block;
        margin-top: 10px;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.95rem;
      }

      .btn-link:hover {
        text-decoration: underline;
      }

      /* Testimonials */
      .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }

      .testimonial-card {
        text-align: left;
        background-color: #f9f9f9;
        border: 1px solid #eee;
      }

      .stars {
        color: #ffc107;
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: var(--spacing-md);
        color: #555;
      }

      .testimonial-author {
        font-weight: 700;
        color: var(--secondary-color);
      }

      /* Footer */
      footer {
        background-color: var(--secondary-color);
        color: var(--white);
        padding: var(--spacing-xl) var(--spacing-md);
        text-align: center;
      }

      .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
      }

      .social-links a {
        margin: 0 var(--spacing-sm);
        font-size: 1.2rem;
      }

      /* Responsive */
      .logo-img {
        height: 70px;
      }

      /* Mobile Intro (Hidden by default on desktop) */
      .mobile-intro {
        display: none;
        padding: 40px 20px;
        text-align: center;
        background-color: var(--white);
      }

      .mobile-intro h1 {
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
      }

      .mobile-intro p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.6;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .nav-links {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 10px;
        }

        .nav-links a {
          font-size: 1rem;
        }

        .logo {
          flex-direction: column;
          gap: 5px;
        }

        .logo-img {
          height: 60px;
        }

        .logo-text {
          font-size: 1.8rem;
          color: #FFD700;
          font-family: 'New Stencil tfb', sans-serif;
          text-align: center;
          text-transform: uppercase;
          -webkit-text-stroke: 2px black;
          margin: 0 10px;
          paint-order: stroke fill;
        }

        /* Mobile Layout Adjustments */

        /* Show the text below the image on mobile */
        .mobile-intro {
          display: block;
        }

        .stats-container {
          flex-direction: column;
          gap: var(--spacing-md);
        }
      }