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

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  color: #1d1e33;
}

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

button {
  font-family: "Poppins", sans-serif;
  padding: 12px 24px;
  font-size: 16px;
  border: 2px solid #1d1e33;
  background-color: #e3b505;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover {
  background-color: transparent;
  color: #1d1e33;
}

.site-header {
  background-color: #1d1e33;
  padding: 20px 0;
}
.site-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo a {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.site-header .main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.site-header .main-nav ul li a {
  color: #fff;
  font-weight: 500;
}
.site-header .main-nav ul li a:hover {
  color: #e3b505;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/assets/img/hero.png") no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  color: #fff;
}
.hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero .hero-text {
  flex: 1;
  max-width: 600px;
}
.hero .hero-text h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 20px;
}
.hero .hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}
.hero .hero-text .hero-button {
  background-color: #e3b505;
  color: #000;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}
.hero .hero-text .hero-button:hover {
  background-color: #fff;
  color: #1d1e33;
}
.hero .hero-image {
  flex: 1;
  max-width: 500px;
  display: none;
}
.hero .hero-image img {
  width: 100%;
  border-radius: 12px;
}

.hotel-categories {
  padding: 80px 0;
  background-color: #f8f8f8;
}
.hotel-categories .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1d1e33;
}
.hotel-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.hotel-categories .category-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.hotel-categories .category-card:hover {
  transform: translateY(-5px);
}
.hotel-categories .category-card i {
  color: #e3b505;
  margin-bottom: 15px;
}
.hotel-categories .category-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #1d1e33;
}
.hotel-categories .category-card p {
  font-size: 14px;
  margin-bottom: 20px;
}
.hotel-categories .category-card .category-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #1d1e33;
  color: #1d1e33;
  background-color: transparent;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s ease;
}
.hotel-categories .category-card .category-btn:hover {
  background-color: #1d1e33;
  color: #fff;
}

.popular-hotels {
  padding: 80px 0;
  background-color: #fff;
}
.popular-hotels .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1d1e33;
}
.popular-hotels .hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.popular-hotels .hotel-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.popular-hotels .hotel-card:hover {
  transform: translateY(-5px);
}
.popular-hotels .hotel-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-hotels .hotel-card .hotel-info {
  padding: 20px;
}
.popular-hotels .hotel-card .hotel-info h3 {
  font-size: 20px;
  color: #1d1e33;
  margin-bottom: 10px;
}
.popular-hotels .hotel-card .hotel-info p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}
.popular-hotels .hotel-card .hotel-info .hotel-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #e3b505;
  color: #e3b505;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.popular-hotels .hotel-card .hotel-info .hotel-btn:hover {
  background-color: #e3b505;
  color: #fff;
}

.why-us {
  padding: 80px 0;
  background-color: #f0f2f5;
}
.why-us .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #1d1e33;
}
.why-us .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.why-us .benefit {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.why-us .benefit:hover {
  transform: translateY(-5px);
}
.why-us .benefit i {
  color: #e3b505;
  margin-bottom: 15px;
}
.why-us .benefit h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #1d1e33;
}
.why-us .benefit p {
  font-size: 14px;
  color: #555;
}

.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.contact-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1d1e33;
}
.contact-section .contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  resize: vertical;
}
.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  outline: none;
  border-color: #e3b505;
}
.contact-section .contact-form button {
  background-color: #e3b505;
  color: #000;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-section .contact-form button:hover {
  background-color: #fff;
  border: 2px solid #e3b505;
  color: #e3b505;
}
.contact-section .popup {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.contact-section .popup.active {
  display: flex;
}
.contact-section .popup .popup-content {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: fadeInScale 0.4s ease;
}
.contact-section .popup .popup-content p {
  font-size: 18px;
  color: #1d1e33;
  font-weight: 500;
}

.faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}
.faq-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1d1e33;
}
.faq-section .faq-item {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
}
.faq-section .faq-item .faq-question {
  padding: 20px;
  font-weight: 600;
  color: #1d1e33;
  position: relative;
}
.faq-section .faq-item .faq-question:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}
.faq-section .faq-item .faq-answer {
  display: none;
  padding: 20px;
  border-top: 1px solid #eee;
  font-size: 15px;
  color: #444;
}
.faq-section .faq-item.active .faq-answer {
  display: block;
}
.faq-section .faq-item.active .faq-question:after {
  transform: rotate(180deg);
}

.site-footer {
  background-color: #1d1e33;
  color: #fff;
  padding: 60px 0;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
}
.site-footer h3,
.site-footer h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}
.site-footer p,
.site-footer li {
  font-size: 14px;
  color: #ccc;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li a {
  color: #ccc;
  transition: color 0.3s;
}
.site-footer ul li a:hover {
  color: #e3b505;
}
.site-footer a {
  text-decoration: none;
}

.category-hero {
  background: linear-gradient(135deg, #1d1e33 0%, #121322 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.category-hero .category-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
.category-hero h2 {
  color: #fff;
}
.category-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}
.category-hero::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.category-hotels {
  padding: 80px 20px;
  background-color: #f5f7fa;
}
.category-hotels .hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.category-hotels .hotel-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.category-hotels .hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.category-hotels .hotel-card img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.category-hotels .hotel-card .hotel-info {
  padding: 25px;
  text-align: center;
}
.category-hotels .hotel-card .hotel-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1d1e33;
}
.category-hotels .hotel-card .hotel-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  min-height: 48px;
}
.category-hotels .hotel-card .hotel-info .hotel-btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  background-color: #e3b505;
  color: #000;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.category-hotels .hotel-card .hotel-info .hotel-btn:hover {
  background-color: #b18d04;
  color: #fff;
}

.privacy-policy {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333;
}
.privacy-policy h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1d1e33;
  text-align: center;
}
.privacy-policy h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1d1e33;
}
.privacy-policy p,
.privacy-policy ul {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.privacy-policy ul {
  padding-left: 20px;
  list-style-type: disc;
}

.cookies-policy {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333;
}
.cookies-policy h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1d1e33;
  text-align: center;
}
.cookies-policy h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1d1e33;
}
.cookies-policy p,
.cookies-policy ul {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.cookies-policy ul {
  padding-left: 20px;
  list-style-type: disc;
}
.cookies-policy ul li {
  margin-bottom: 10px;
}
.cookies-policy strong {
  color: #e3b505;
}

.terms-policy {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333;
}
.terms-policy h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1d1e33;
  text-align: center;
}
.terms-policy h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1d1e33;
}
.terms-policy p,
.terms-policy ul {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.terms-policy ul {
  padding-left: 20px;
  list-style-type: disc;
}
.terms-policy ul li {
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background-color: #1d1e33;
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 9999;
}
.cookie-banner .cookie-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-banner .cookie-container p {
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner .cookie-container p a {
  color: #e3b505;
  text-decoration: underline;
}
.cookie-banner .cookie-container p a:hover {
  color: #facd21;
}
.cookie-banner .cookie-container button {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background-color: #e3b505;
  color: #000;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.cookie-banner .cookie-container button:hover {
  background-color: #b18d04;
}/*# sourceMappingURL=style.css.map */