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

html {
  scroll-behavior: smooth;
}

body {
  margin-top: 6rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #2563eb;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
}

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

.btn {
  display: inline-block;
  background-color: #2563eb;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

.btn:focus,
.btn:active {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
}

.btn-outline:hover {
  background-color: #2563eb;
  color: #ffffff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-block {
  display: block;
  width: 100%;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #2563eb;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

.text-left h2::after {
  left: 0;
  transform: none;
}

header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 24px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #2563eb;
}

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

.nav-links a {
  font-weight: 500;
  color: #333;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 16px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn:focus + .mobile-menu,
.mobile-menu-btn:active + .mobile-menu {
  display: flex;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.search-box {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.search-input {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-input i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.search-input input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
  background-color: #2563eb;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 120px;
  flex: 1 1 100%;
  max-width: 200px;
  text-align: center;
}

.search-btn:hover {
  background-color: #1d4ed8;
}

.features {
  padding: 80px 0;
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 32px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.feature-icon i {
  font-size: 28px;
  color: #2563eb;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card p {
  color: #6b7280;
}

.destinations {
  padding: 80px 0;
  background-color: #f9fafb;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.destination-card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.destination-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-img img {
  transform: scale(1.1);
}

.destination-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #ffffff;
  color: #333;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.destination-rating i {
  color: #f59e0b;
}

.destination-info {
  padding: 24px;
}

.destination-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.destination-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.meta-item i {
  color: #2563eb;
}

.destination-info p {
  color: #6b7280;
  margin-bottom: 16px;
}

.destination-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
}

.per {
  font-size: 14px;
  color: #6b7280;
}

.view-all-btn {
  text-align: center;
  margin-top: 48px;
}

.special-offers {
  padding: 80px 0;
  background-color: #ffffff;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.offer-card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 16px;
  left: 0;
  background-color: #f59e0b;
  color: #ffffff;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  z-index: 10;
}

.offer-badge::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  border-width: 15px 10px;
  border-style: solid;
  border-color: #f59e0b transparent #f59e0b #f59e0b;
}

.offer-img {
  height: 200px;
  overflow: hidden;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-img img {
  transform: scale(1.1);
}

.offer-content {
  padding: 24px;
}

.offer-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.offer-content p {
  color: #6b7280;
  margin-bottom: 16px;
}

.offer-details {
  margin-bottom: 24px;
}

.offer-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 14px;
}

.offer-detail i {
  color: #2563eb;
}

.offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.offer-price .btn-sm {
  align-self: stretch;
  text-align: center;
  width: 100%;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
}

.old-price {
  font-size: 14px;
  color: #6b7280;
  text-decoration: line-through;
}

.new-price {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
}

.testimonials {
  padding: 80px 0;
  background-color: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 3px solid #2563eb;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-rating {
  margin-bottom: 16px;
}

.testimonial-rating i {
  color: #f59e0b;
  margin: 0 2px;
}

.testimonial-content p {
  color: #6b7280;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 14px;
  color: #6b7280;
}

.newsletter {
  padding: 48px 0;
  background-color: #2563eb;
  color: #ffffff;
}

.newsletter-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.newsletter-text {
  flex: 1;
  min-width: 300px;
}

.newsletter-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter-text p {
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  min-width: 300px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.newsletter-form .btn {
  background-color: #f59e0b;
}

.newsletter-form .btn:hover {
  background-color: #e68a00;
}

.about-us {
  padding: 80px 0;
  background-color: #f3f4f6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}

.about-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.about-content p {
  color: #6b7280;
  margin-bottom: 24px;
  font-size: 18px;
}

.promo-banner {
  background-color: #f59e0b;
  color: #ffffff;
  text-align: center;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 500;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.promo-banner a {
  color: #ffffff;
  text-decoration: underline;
}

.cta-section {
  background-color: #1d4ed8;
  color: #ffffff;
  padding: 48px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

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

.cta-section .btn {
  background-color: #f59e0b;
}

.cta-section .btn:hover {
  background-color: #e68a00;
}

.blog {
  padding: 80px 0;
  background-color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 24px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-content p {
  color: #6b7280;
  margin-bottom: 16px;
}

.faq {
  padding: 80px 0;
  background-color: #f3f4f6;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.faq-item {
  margin-bottom: 16px;
  border-bottom: 1px solid #d1d5db;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background-color: #1d4ed8;
  color: #ffffff;
  border: none;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #1e40af;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-top: none;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 200px;
  padding: 16px;
}

.faq-answer p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
}

.wikivoyage {
  padding: 80px 0;
  background-color: #ffffff;
}

.wikivoyage-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.wikivoyage-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.wikivoyage-content p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 16px;
}

.wikivoyage-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.wikivoyage-content ul li {
  margin-bottom: 8px;
}

.wikivoyage-content a {
  color: #2563eb;
  text-decoration: underline;
}

.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 32px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 32px;
}

.footer-map {
  width: 100%;
  margin-top: 32px;
}

.footer-column h3 {
  color: #f1c40f;
}

.footer-contact li {
  color: #bdc3c7;
}

.footer a {
  color: #f1c40f;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-social a {
  color: #f1c40f;
  margin-right: 16px;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  border-top: 1px solid #bdc3c7;
  padding-top: 16px;
  color: #bdc3c7;
}

.footer-map {
  margin-top: 32px;
}

.booking {
  padding: 80px 0;
  background-color: #f9fafb;
}

.booking-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

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

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.full-width {
  flex: 1 1 100%;
}

.btn-block {
  display: block;
  width: 100%;
}

