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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 1rem 0;
  font-family: "Outfit", sans-serif;
}
.site-header .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo a {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.site-header .logo a:hover {
  color: #0077aa;
}
.site-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.site-header .nav-menu a {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.site-header .nav-menu a:hover {
  color: #0077aa;
}
.site-header .nav-menu a.btn {
  padding: 0.5rem 1.2rem;
  border: 2px solid #0077aa;
  border-radius: 50px;
  color: #0077aa;
  font-weight: 600;
  transition: all 0.3s;
}
.site-header .nav-menu a.btn:hover {
  background-color: #0077aa;
  color: #fff;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .site-header .nav-menu {
    display: none;
  }
}
.hero-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-section .hero-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: brightness(0.75);
}
.hero-section .booking-widget {
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
  font-family: "Outfit", sans-serif;
}
.hero-section .booking-widget form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-section .booking-widget form .hotel-choice {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.hero-section .booking-widget form .hotel-choice input {
  margin-right: 0.5rem;
}
.hero-section .booking-widget form .form-row {
  display: flex;
  gap: 0.5rem;
}
.hero-section .booking-widget form .form-row input,
.hero-section .booking-widget form .form-row select {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}
.hero-section .booking-widget form button {
  background-color: #b38b59;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.7rem;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-section .booking-widget form button:hover {
  background-color: #a0743d;
}
.hero-section .booking-widget form .note {
  font-size: 0.75rem;
  color: #555;
  text-align: center;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .booking-widget {
    max-width: 90%;
    padding: 1.5rem;
  }
  .hero-section .form-row {
    flex-direction: column;
  }
  .hero-section .form-row input,
  .hero-section .form-row select {
    width: 100%;
  }
}
.offers-section {
  padding: 5rem 2rem;
  background-color: #f7f7f7;
  font-family: "Outfit", sans-serif;
}
.offers-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}
.offers-section .offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.offers-section .offer-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offers-section .offer-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.offers-section .offer-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 1.2rem 0.5rem;
  color: #222;
}
.offers-section .offer-card h3 i {
  margin-right: 0.5rem;
  color: #b38b59;
}
.offers-section .offer-card p {
  padding: 0 1.2rem 1rem;
  font-size: 0.95rem;
  color: #444;
}
.offers-section .offer-card a {
  margin: 0 1.2rem 1.2rem;
  color: #0077aa;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}
.offers-section .offer-card a:hover {
  color: #004f70;
}

.services-section {
  padding: 5rem 2rem;
  background-color: #fff;
  font-family: "Outfit", sans-serif;
}
.services-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}
.services-section .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.services-section .service-card {
  background: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.services-section .service-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-section .service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 1.2rem 0.5rem;
  color: #222;
}
.services-section .service-card h3 i {
  margin-right: 0.5rem;
  color: #b38b59;
}
.services-section .service-card p {
  padding: 0 1.2rem 1rem;
  font-size: 0.95rem;
  color: #444;
}
.services-section .service-card a {
  margin: 0 1.2rem 1.2rem;
  color: #0077aa;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}
.services-section .service-card a:hover {
  color: #004f70;
}

.experience-section {
  padding: 5rem 2rem;
  background: #f4f4f4;
  font-family: "Outfit", sans-serif;
}
.experience-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}
.experience-section .experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.experience-section .experience-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.experience-section .experience-card:hover {
  transform: translateY(-5px);
}
.experience-section .experience-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.experience-section .experience-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem 1.2rem 0.5rem;
  color: #222;
}
.experience-section .experience-card h3 i {
  margin-right: 0.5rem;
  color: #b38b59;
}
.experience-section .experience-card p {
  padding: 0 1.2rem 1.2rem;
  font-size: 0.95rem;
  color: #444;
}
.experience-section .experience-card .btn-discover {
  margin: 0 1.2rem 1.5rem;
  align-self: flex-start;
  background-color: #b38b59;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  transition: background 0.3s;
}
.experience-section .experience-card .btn-discover:hover {
  background-color: #a0743d;
}

.testimonials-section {
  padding: 5rem 2rem;
  background-color: #ffffff;
}
.testimonials-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonials-section .testimonial-card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: "Outfit", sans-serif;
}
.testimonials-section .testimonial-card .testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}
.testimonials-section .testimonial-card .testimonial-author {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.faq-section {
  padding: 5rem 2rem;
  background-color: #f4f4f4;
}
.faq-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}
.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-list .faq-item {
  margin-bottom: 1.5rem;
}
.faq-section .faq-list .faq-item .faq-question {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  border-radius: 6px;
  transition: background 0.3s;
}
.faq-section .faq-list .faq-item .faq-question:hover {
  background-color: #eee;
}
.faq-section .faq-list .faq-item .faq-answer {
  display: none;
  padding: 1rem 1.2rem;
  background: #ffffff;
  border-left: 3px solid #b38b59;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  border-radius: 0 6px 6px 6px;
  color: #444;
}
.faq-section .faq-list .faq-item.active .faq-answer {
  display: block;
}

.contact-page {
  padding: 6rem 2rem;
  background-color: #f7f7f7;
  font-family: "Outfit", sans-serif;
}
.contact-page .container {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-page .contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}
.contact-page .contact-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}
.contact-page .contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact-page .contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.contact-page .contact-form .form-group {
  display: flex;
  flex-direction: column;
}
.contact-page .contact-form .form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}
.contact-page .contact-form .form-group input,
.contact-page .contact-form .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-page .contact-form .form-group input:focus,
.contact-page .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #b38b59;
}
.contact-page .contact-form .form-group textarea {
  resize: vertical;
}
.contact-page .contact-form .form-group.full-width {
  grid-column: 1/-1;
}
.contact-page .contact-form .submit-btn {
  margin-top: 2rem;
  background-color: #b38b59;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-page .contact-form .submit-btn i {
  margin-right: 0.5rem;
}
.contact-page .contact-form .submit-btn:hover {
  background-color: #a0743d;
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.thank-you-popup .popup-content {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.thank-you-popup .popup-content i {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 1rem;
}
.thank-you-popup .popup-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.thank-you-popup .popup-content p {
  color: #555;
  margin-bottom: 1.5rem;
}
.thank-you-popup .popup-content button {
  background-color: #b38b59;
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.thank-you-popup .popup-content button:hover {
  background-color: #a0743d;
}

.site-footer {
  background-color: #222;
  color: #ccc;
  padding: 4rem 2rem 2rem;
  font-family: "Outfit", sans-serif;
}
.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.site-footer .footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.site-footer .footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aaa;
}
.site-footer .footer-links h4,
.site-footer .footer-contact h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.site-footer .footer-links ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-links ul li {
  margin-bottom: 0.6rem;
}
.site-footer .footer-links ul li a {
  font-size: 0.95rem;
}
.site-footer .footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.site-footer .footer-contact p i {
  margin-right: 0.5rem;
  color: #b38b59;
}
.site-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #999;
}

.legal-section {
  padding: 5rem 2rem;
  background-color: #ffffff;
  font-family: "Outfit", sans-serif;
  color: #333;
}
.legal-section .container {
  max-width: 1000px;
  margin: 0 auto;
}
.legal-section .legal-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.legal-section .legal-intro {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #555;
}
.legal-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  color: #222;
}
.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #444;
}
.legal-section p a {
  color: #0077aa;
  text-decoration: underline;
}
.legal-section p a:hover {
  color: #004f70;
}
.legal-section .legal-footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #999;
  text-align: center;
}/*# sourceMappingURL=style.css.map */