.header-1 .logo img {
  width: 60px !important;
}

@media (max-width: 768px) {
  .header-1 .logo img {
    width: 40px !important;
  }
}

.gt-footer-widget-wrapper-2 .footer-left .footer-logo img {
  width: 60px !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__logo img {
  width: 50px !important;
}

.offcanvas__contact-icon {
  width: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-img-box {
  width: 100%;
  height: 250px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.agency-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gt-agency-content h5 {
  font-size: 15px;
  font-weight: 400;
  color: #AA8453;
}

.gt-agency-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.amenities-list i {
  font-size: 18px;
  margin-right: 8px;
  color: #AA8453;
}

/* =========================
   Alert component
   ========================= */
.alert-container {
  position: fixed;
  top: 120px;
  right: 30px;
  z-index: 99999;
  max-width: 400px;
}

@media (max-width: 575px) {
  .alert-container {
    top: 90px;
    right: 15px;
    left: 15px;
    max-width: none;
  }
}

.custom-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  max-width: 400px;
  padding: 20px 24px;
  border-radius: 8px;
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  animation: slideFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: auto;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

@media (max-width: 575px) {
  .custom-alert {
    min-width: auto;
    max-width: none;
    padding: 18px 20px;
  }
}

.custom-alert:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.custom-alert-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

/* Success Alert */
.custom-alert-success {
  border-left: 4px solid #81C784;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(46, 64, 48, 0.9) 100%);
}

.custom-alert-success:hover {
  border-left-color: #A5D6A7;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.98) 0%, rgba(46, 64, 48, 0.95) 100%);
}

/* Error Alert */
.custom-alert-error {
  border-left: 4px solid #E57373;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(64, 46, 46, 0.9) 100%);
}

.custom-alert-error:hover {
  border-left-color: #EF9A9A;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.98) 0%, rgba(64, 46, 46, 0.95) 100%);
}

/* Icon Container */
.custom-alert-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Success Icon */
.custom-alert-success .custom-alert-icon {
  background: rgba(129, 199, 132, 0.2);
  border: 1px solid rgba(129, 199, 132, 0.3);
}

.custom-alert-success .custom-alert-icon i {
  color: #81C784;
}

.custom-alert-success:hover .custom-alert-icon {
  background: rgba(129, 199, 132, 0.3);
  box-shadow: 0 0 20px rgba(129, 199, 132, 0.3);
  transform: scale(1.1);
}

/* Error Icon */
.custom-alert-error .custom-alert-icon {
  background: rgba(229, 115, 115, 0.2);
  border: 1px solid rgba(229, 115, 115, 0.3);
}

.custom-alert-error .custom-alert-icon i {
  color: #E57373;
}

.custom-alert-error:hover .custom-alert-icon {
  background: rgba(229, 115, 115, 0.3);
  box-shadow: 0 0 20px rgba(229, 115, 115, 0.3);
  transform: scale(1.1);
}

/* Message Content */
.custom-alert-message {
  line-height: 1.6;
  flex: 1;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.95);
}

.custom-alert-message span {
  display: block;
  color: rgba(255, 255, 255, 0.95);
}

/* Error List */
.custom-alert-message ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.custom-alert-message ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.9);
}

.custom-alert-message ul li:last-child {
  margin-bottom: 0;
}

.custom-alert-message ul li:before {
  content: "•";
  position: absolute;
  left: -15px;
  font-weight: bold;
}

/* Success list bullet */
.custom-alert-success .custom-alert-message ul li:before {
  color: #81C784;
}

/* Error list bullet */
.custom-alert-error .custom-alert-message ul li:before {
  color: #E57373;
}

/* Close Button */
.custom-alert-close {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  outline: none;
  padding: 4px;
  margin-left: 8px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.custom-alert-close:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.custom-alert-close i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* Fade Out Animation */
.custom-alert.alert-fade-out {
  animation: slideFadeOut 0.3s ease forwards;
}

/* Slide In Animation */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateX(100%) translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* Slide Out Animation */
@keyframes slideFadeOut {
  0% {
    opacity: 1;
    transform: translateX(0) translateY(0);
    max-height: 300px;
    margin-bottom: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  100% {
    opacity: 0;
    transform: translateX(100%) translateY(-10px);
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.software-section {
  padding-top: 100px;
}

.advantage-icon {
  font-size: 48px;
  color: #AA8453;
}

.gt-list-features {
  list-style: none;
  padding: 0;
}

.gt-list-features li {
  padding: 8px 0;
  font-size: 16px;
}

.gt-list-features li i {
  color: #AA8453;
  margin-right: 10px;
}

.gt-service-card {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.gt-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gt-feature-card {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.gt-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 48px;
  color: #AA8453;
  margin-bottom: 20px;
}

.legal-page a {
    font-weight: 500;
    color: #AA8453;
    text-decoration: none;
}

.legal-page a:hover {
    color: #8f6f44;
    text-decoration: underline;
}

.gt-enjoy-hotel-wrapper-3 .gt-enjoy-hotel-content .menu-list ul li {
    display: block;
}
.gt-enjoy-hotel-wrapper-3 .gt-enjoy-hotel-content .menu-list ul li span {
    font-weight: 600;
    margin-right: 6px;
}
.gt-enjoy-hotel-wrapper-3 .gt-enjoy-hotel-content .menu-list {
    max-width: none;
    margin-top: 30px;
}

.sticky.header-2.navbar-wac {
    background-color: rgb(28, 28, 28);
}
.sticky.header-2.navbar-wac .main-menu li a {
    color: white !important;
}
.sticky.header-1.navbar-wac .header-right .sidebar__toggle .header-bar span:first-child,
.sticky.header-1.navbar-wac .header-right .sidebar__toggle .header-bar span:last-child {
    background: white;
}
.header-main .main-menu ul li a.active_link {
    color: #bd996a !important;
}
.sticky.header-1.navbar-wac .header-main .main-menu ul li a.active_link {
    color: #bd996a !important;
}
.mean-container .mean-nav ul li a.active_link {
    color: #bd996a !important;
}
.gt-single-sideber-widget .gt-category-list .service_active_link {
    background-color: #bd996a !important;
}
.gt-single-sideber-widget .gt-category-list .service_active_link a {
    color: white !important;
}
.gt-single-sideber-widget .gt-category-list .service_active_link i {
    color: white !important;
    transition: 0.4s ease-in-out;
}

.gt-hero-2 .gt-hero-content p {
    max-width: 100%;
}

.gt-room-explore-items {
    height: 580px;
}

.gt-hero-2 .social-icon {
    top: 5% !important;
}

@media (max-width: 767px) {
    .gt-why-choose-us-images .gt-choose-us-image .gt-content {
        transform: translateY(130px) !important;
        height: 195px !important;
    }

    .gt-why-choose-us-images .gt-choose-us-image:hover .gt-content {
        transform: translateY(0) !important;
        height: auto!important;
    }

    .gt-room-explore-wrapper .gt-room-explore-items {
        height: 600px !important;
        padding: 12px !important;
    }

    .gt-room-explore-wrapper .gt-room-exlore-box-items ul li {
        margin-bottom: 5px !important;
    }

    .gt-room-explore-wrapper .gt-room-exlore-box-items .gt-theme-btn {
        margin-top: 10px !important;
    }

    .gt-footer-widget-wrapper-2 .footer-left .contact-list li {
        width: 100% !important;
        padding: 5px;
    }
}

.googpemap-2 iframe {
    width: 100%;
    height: 400px;
}

.sticky.header-1 .header-main .main-menu ul.submenu li a {
    color: black !important;
}

.header-main .main-menu ul li .submenu li.all_services a {
    justify-content: normal !important;
}
