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

:root {
  --primary-color: #ff8c00;
  --secondary-color: #ff6b35;
  --accent-color: #ff5722;
  --text-dark: #1a1a1a;
  --bg-light: #fff5f0;
  --bg-white: #ffffff;
  --border-color: #ffd4b3;
  --success-color: #ff8c00;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-white);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.main-nav {
  position: relative;
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--bg-white);
  margin: 3px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-menu li a {
  color: var(--bg-white);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background-color 0.3s;
  font-size: 13px;
  display: block;
}

.nav-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff9800 0%, rgb(255 115 40 / 25%) 100%),
    url(../galeria_honduras/hero.png) center / cover no-repeat;
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 107, 53, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 20px;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: fadeInUp 1.2s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
  background-color: #ff6b35;
}

section {
  padding: 40px 0;
}

section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

section p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.destinations,
.features,
.travel-tips,
.services,
.testimonials,
.quick-links {
  background-color: var(--bg-white);
}

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

.dest-grid,
.features-grid,
.services-list,
.testimonial-grid,
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.dest-card,
.feature-item,
.service-item,
.testimonial,
.link-box {
  background-color: var(--bg-white);
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dest-card:hover,
.service-item:hover,
.link-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.dest-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}

.dest-card h3,
.feature-item h3,
.service-item h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.service-link:hover {
  color: var(--primary-color);
}

.tips-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tip-box {
  background-color: var(--bg-white);
  padding: 18px;
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
}

.testimonial {
  background-color: var(--bg-light);
  font-style: italic;
}

.testimonial .author {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 13px;
}

.cta-section {
  background: var(--bg-light);
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color),
    var(--secondary-color)
  );
}

.cta-section h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 32px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--text-dark);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--bg-white);
  padding: 40px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 15px;
}

.content-section {
  padding: 40px 0;
}

.tips-detailed,
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tip-detail,
.activity-item {
  background-color: var(--bg-white);
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tip-item {
  background-color: var(--bg-white);
  padding: 18px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.products-section {
  background-color: var(--bg-light);
  padding: 50px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.product-card {
  background-color: var(--bg-white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card.featured {
  border: 2px solid var(--accent-color);
  position: relative;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.product-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 15px 0;
}

.product-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.product-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: 13px;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.product-button:hover {
  background-color: var(--secondary-color);
}

.contact-intro {
  text-align: center;
  padding: 30px 0;
  background-color: var(--bg-light);
}

.contact-intro h2 {
  margin-bottom: 15px;
}

.contact-content {
  padding: 50px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--secondary-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-button {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: var(--secondary-color);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.contact-item p {
  font-size: 14px;
  line-height: 1.6;
}

.map-section {
  padding: 50px 0;
  background-color: var(--bg-light);
}

.map-wrapper {
  margin-top: 25px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contact-cta {
  text-align: center;
  padding: 40px 0;
}

.contact-cta h2 {
  margin-bottom: 15px;
}

.thankyou-page,
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 20px;
}

.thankyou-content,
.error-content {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 600px;
}

.thankyou-content h1 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.thankyou-content p {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.thankyou-info {
  background-color: var(--bg-light);
  padding: 18px;
  border-radius: 8px;
  margin: 20px 0;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--secondary-color);
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.error-code {
  font-size: 80px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.error-content h2 {
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.error-suggestions {
  background-color: var(--bg-light);
  padding: 18px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: left;
}

.error-suggestions ul {
  margin-top: 10px;
  padding-left: 20px;
}

.error-suggestions li {
  margin: 8px 0;
  font-size: 14px;
}

.policy-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--bg-white);
  padding: 35px 0;
  text-align: center;
}

.policy-hero h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.policy-hero p {
  font-size: 14px;
  opacity: 0.9;
}

.policy-content {
  padding: 50px 0;
}

.policy-text {
  max-width: 900px;
  margin: 0 auto;
}

.policy-text h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: left;
}

.policy-text h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.policy-text h4 {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.policy-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 14px;
}

.policy-text ul {
  margin: 15px 0 15px 25px;
}

.policy-text li {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 14px;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  color: var(--bg-white);
  padding: 18px;
  z-index: 10000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  margin: 0;
  font-size: 13px;
  flex: 1;
  min-width: 250px;
}

.privacy-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.privacy-buttons a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 13px;
}

.privacy-buttons a:hover {
  text-decoration: underline;
}

.privacy-buttons button {
  background-color: var(--accent-color);
  color: var(--bg-white);
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.privacy-buttons button:hover {
  background-color: #ff6b35;
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--bg-white);
}

.footer-section p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

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

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 8px 8px;
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    padding: 12px 20px;
    border-radius: 0;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  section h2 {
    font-size: 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dest-grid,
  .features-grid,
  .services-list,
  .testimonial-grid,
  .links-grid,
  .tips-content,
  .tips-detailed,
  .activities-grid,
  .tips-list,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-content,
  .error-content {
    padding: 30px 20px;
  }

  .thankyou-content h1 {
    font-size: 24px;
  }

  .error-code {
    font-size: 60px;
  }

  .privacy-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-buttons {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .hero {
    min-height: 60vh;
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  section {
    padding: 30px 0;
  }

  section h2 {
    font-size: 20px;
  }

  .cta-button,
  .product-button,
  .submit-button {
    font-size: 13px;
    padding: 9px 18px;
  }

  .dest-card,
  .feature-item,
  .service-item,
  .tip-box,
  .tip-detail,
  .activity-item,
  .tip-item {
    padding: 15px;
  }

  .product-card {
    padding: 20px;
  }

  .thankyou-icon {
    font-size: 50px;
  }

  .thankyou-content h1 {
    font-size: 20px;
  }

  .error-code {
    font-size: 50px;
  }

  .error-content h2 {
    font-size: 22px;
  }

  .policy-text h2 {
    font-size: 20px;
  }

  .policy-text h3 {
    font-size: 16px;
  }

  footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    gap: 25px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    min-height: 55vh;
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  section h2 {
    font-size: 18px;
  }

  .logo {
    font-size: 16px;
  }

  .nav-menu li a {
    font-size: 12px;
    padding: 10px 15px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.culture-section,
.practical-info,
.safety-section,
.budget-section,
.tips-extra,
.tips-section {
  padding: 50px 0;
}

.safety-section {
  background-color: var(--bg-light);
}
