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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
}

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

ul {
  list-style: none;
}

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

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

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

.highlight {
  color: #FF6B35;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: #FF6B35;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid #FF6B35;
}
.btn-outline:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #FFFFFF;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}
.header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo img {
  height: 40px;
}
.header .nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .nav-links .nav-link {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.header .nav-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: all 0.3s ease;
}
.header .nav-links .nav-link:hover {
  color: #FF6B35;
}
.header .nav-links .nav-link:hover::after {
  width: 100%;
}
.header .nav-links .nav-link.active {
  color: #FF6B35;
}
.header .nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.header .login-menu-wrapper {
  position: relative;
}
.header .login-menu-wrapper .login-btn {
  z-index: 1001;
}
.header .login-menu-wrapper .login-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  border: 1.5px solid #FF6B35;
  border-radius: 8px;
  min-width: 180px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1002;
}
.header .login-menu-wrapper .login-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item {
  display: block;
  padding: 12px 18px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:last-child {
  border-bottom: none;
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:hover {
  background: rgba(45, 111, 255, 0.1);
  color: #FF6B35;
  padding-left: 22px;
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:first-child {
  border-radius: 6px 6px 0 0;
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:last-child {
  border-radius: 0 0 6px 6px;
}
.header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1003;
}
.header .mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.header .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 991px) {
  .header .mobile-menu-toggle {
    display: flex;
  }
  .header .nav-actions {
    margin-left: auto;
    margin-right: 15px;
  }
  .header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1002;
  }
  .header .nav-links.active {
    right: 0;
  }
  .header .nav-links .nav-link {
    font-size: 18px;
  }
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.footer {
  background: #000000;
  color: #FFFFFF;
  padding: 40px 0 20px;
}
.footer .container {
  position: relative;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer .footer-brand .footer-logo {
  display: inline-block;
}
.footer .footer-brand .footer-logo img {
  width: auto;
}
.footer .footer-content-wrapper {
  display: flex;
  gap: 140px;
}
.footer .footer-links-group {
  display: flex;
  gap: 100px;
}
.footer .footer-col h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #FFFFFF;
}
.footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer .footer-col ul li a {
  font-size: 15px;
  color: #999999;
  transition: all 0.3s ease;
}
.footer .footer-col ul li a:hover {
  color: #FF6B35;
}
.footer .footer-col.contact-col ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer .footer-col.contact-col ul li img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-col.contact-col ul li a {
  color: #999999;
  font-size: 15px;
}
.footer .footer-col.contact-col ul li a:hover {
  color: #FF6B35;
}
.footer .footer-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 160px;
}
.footer .footer-actions .btn {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer .footer-actions .btn.btn-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.footer .footer-actions .btn.btn-login:hover {
  border-color: #FF6B35;
  color: #FF6B35;
}
.footer .footer-actions .btn.btn-touch {
  background: #FF6B35;
  border: 1px solid #FF6B35;
  color: #FFFFFF;
}
.footer .footer-actions .btn.btn-touch:hover {
  background: rgb(255, 69.6336633663, 2);
  border-color: rgb(255, 69.6336633663, 2);
}
.footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  margin-bottom: 20px;
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-bottom p {
  font-size: 14px;
  color: #666666;
}
.footer .footer-bottom .footer-policy-links {
  display: flex;
  gap: 40px;
}
.footer .footer-bottom .footer-policy-links a {
  font-size: 14px;
  color: #666666;
  transition: all 0.3s ease;
}
.footer .footer-bottom .footer-policy-links a:hover {
  color: #FF6B35;
}
@media (max-width: 992px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .footer .footer-content-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 40px;
  }
  .footer .footer-links-group {
    width: 100%;
    justify-content: space-between;
    gap: 40px;
  }
  .footer .footer-actions {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  .footer .footer-actions .btn {
    width: 48%;
  }
}
@media (max-width: 700px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .footer .footer-links-group {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  .footer .footer-col ul {
    align-items: center;
    gap: 10px;
  }
  .footer .footer-col.contact-col ul li {
    justify-content: center;
  }
  .footer .footer-actions {
    flex-direction: column;
  }
  .footer .footer-actions .btn {
    width: 100%;
  }
  .footer .footer-bottom .footer-policy-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

.hero {
  position: relative;
  height: 100vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
}
.hero.about-hero, .hero.contact-hero {
  min-height: auto;
  height: 600px;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .hero-background img,
.hero .hero-background .hero-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-background .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.hero .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.5) 100%);
}
.hero .container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-content {
  text-align: center;
  padding-top: 80px;
}
.hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 40px;
  line-height: 1.2;
  font-size: 50px;
  font-weight: 900;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
}
.hero .hero-title .highlight {
  color: #FF6B35;
}
.hero .hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero .hero-cta {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 30px;
}
.hero .hero-cta .arrow {
  margin-left: 8px;
}
.hero .btn-outline-light {
  background: transparent;
  color: #FF6B35;
  border: 1.5px solid #FF6B35;
}
.hero .btn-outline-light:hover {
  background: rgba(255, 107, 53, 0.1);
}
.hero .hero-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero .learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #FFFFFF;
  color: #FF6B35;
  padding: 15px 60px;
  border-radius: 40px 40px 0 0;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .hero {
    height: 70vh;
  }
}
@media (max-width: 480px) {
  .hero .hero-title {
    font-size: 26px;
  }
}
.stats-bar {
  background: #FFFFFF;
  padding: 80px 0;
  margin-top: auto;
}
.stats-bar .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: left;
}
.stats-bar .stat-item {
  position: relative;
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}
.stats-bar .stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FE7E23 49.52%, #FFFFFF 100%);
}
.stats-bar .stat-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #FFFFFF 0%, #FE7E23 49.52%, #FFFFFF 100%);
  display: none;
}
.stats-bar .stat-item:last-child::after {
  display: none;
}
.stats-bar .stat-item:first-child {
  padding-left: 0;
}
.stats-bar .stat-item .stat-content {
  z-index: 1;
}
.stats-bar .stat-item .stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 25px;
  line-height: 1;
}
.stats-bar .stat-item .stat-label {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  display: block;
  font-weight: 500;
}
.stats-bar .stat-item .stat-icon {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
}
.stats-bar .stat-item:last-child .stat-icon {
  right: 0;
}

@media (max-width: 991px) {
  .stats-bar {
    padding: 60px 0;
  }
  .stats-bar .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar .stat-item {
    padding: 30px !important;
    min-height: 200px;
  }
  .stats-bar .stat-item::before {
    display: block;
  }
  .stats-bar .stat-item:nth-last-child(-n+2)::before {
    display: none;
  }
  .stats-bar .stat-item:nth-child(2n)::after {
    display: none;
  }
  .stats-bar .stat-item .stat-icon {
    bottom: 20px;
  }
}
@media (max-width: 576px) {
  .stats-bar {
    padding: 40px 0;
  }
  .stats-bar .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar .stat-item {
    padding: 30px 20px !important;
    min-height: 160px;
  }
  .stats-bar .stat-item::after {
    display: none;
  }
  .stats-bar .stat-item::before {
    display: block;
  }
  .stats-bar .stat-item:last-child::before {
    display: none;
  }
  .stats-bar .stat-item:nth-last-child(2n)::before {
    display: block;
  }
  .stats-bar .stat-item .stat-number {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .stats-bar .stat-item .stat-label {
    font-size: 15px;
  }
  .stats-bar .stat-item .stat-icon {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
}
.common-split-section {
  padding: 0;
  width: 100%;
  overflow: hidden;
}
.common-split-section .partners-split-container {
  display: flex;
  min-height: 600px;
  position: relative;
}
.common-split-section .partners-left-panel {
  width: 35%;
  background-color: #221F20;
  color: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 30px 50px 40px;
  z-index: 2;
}
.common-split-section .partners-left-panel .partners-left-content {
  position: relative;
  max-width: 400px;
  margin-left: auto;
  margin-right: 20px;
}
.common-split-section .partners-left-panel .subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.common-split-section .partners-left-panel .accent-line {
  width: 60px;
  height: 4px;
  background-color: #FF6B35;
}
.common-split-section .partners-left-panel .left-subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  line-height: 1;
}
.common-split-section .partners-left-panel .left-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FF6B35;
}
.common-split-section .partners-left-panel .left-title .text-orange {
  color: #FF6B35;
}
.common-split-section .partners-left-panel .left-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 300px;
}
.common-split-section .partners-left-panel .panel-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-right: 30px solid #FFF7F1;
  z-index: 10;
}
.common-split-section .partners-right-panel {
  width: 65%;
  background-color: #FFF7F1;
  padding: 60px 80px 60px 40px;
  position: relative;
  display: flex;
  align-items: center;
}
.common-split-section .partners-right-panel .partners-grid-wrapper {
  width: 100%;
  max-width: 1000px;
}
.common-split-section .partners-right-panel .partners-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
}
.common-split-section .partners-right-panel .partner-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 180px;
}
.common-split-section .partners-right-panel .partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.common-split-section .partners-right-panel .partner-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.common-split-section .partners-right-panel .partner-card .card-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.2;
}
.common-split-section .partners-right-panel .partner-card .card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-split-section .partners-right-panel .partner-card .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.common-split-section .partners-right-panel .partner-card .card-content p {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1150px) {
  .common-split-section .partners-split-container {
    flex-direction: column;
    min-height: auto;
  }
  .common-split-section .partners-left-panel, .common-split-section .partners-right-panel {
    width: 100%;
    padding: 50px 30px;
  }
  .common-split-section .partners-left-panel {
    text-align: center;
    align-items: center;
  }
  .common-split-section .partners-left-panel .partners-left-content {
    margin: 0 auto;
    text-align: center;
    margin-right: auto;
  }
  .common-split-section .partners-left-panel .accent-line {
    display: none;
  }
  .common-split-section .partners-left-panel .panel-arrow {
    display: none;
  }
  .common-split-section .partners-left-panel .subtitle-wrapper {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .common-split-section .partners-right-panel .partners-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .common-split-section .partners-left-panel, .common-split-section .partners-right-panel {
    padding: 40px 20px;
  }
}
@media (max-width: 576px) {
  .common-split-section .partners-left-panel .left-title {
    font-size: 32px;
  }
  .common-split-section .partners-right-panel .partners-features-grid {
    grid-template-columns: 1fr;
  }
}
.hotel-partners {
  padding: 80px 0;
}
.hotel-partners .hotel-partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hotel-partners .hotel-partners-content .section-title {
  margin-bottom: 10px;
}
.hotel-partners .hotel-partners-content .section-desc {
  color: #666666;
  margin-bottom: 30px;
}
.hotel-partners .partners-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.hotel-partners .partners-features-list .partner-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
}
.hotel-partners .partners-features-list .partner-feature-item:hover {
  border-bottom: 1px solid #FF6B35;
}
.hotel-partners .partners-features-list .partner-feature-item:hover .feature-text h3 {
  color: #FF6B35;
}
.hotel-partners .partners-features-list .feature-icon-box {
  width: 70px;
  height: 70px;
  background-color: #FFF5EC;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hotel-partners .partners-features-list .feature-icon-box img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hotel-partners .partners-features-list .feature-text {
  text-align: left;
}
.hotel-partners .partners-features-list .feature-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.hotel-partners .partners-features-list .feature-text p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}
.hotel-partners .hotel-partners-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.hotel-partners .diamond-frame-container {
  position: relative;
  width: 450px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hotel-partners .diamond-border {
  position: absolute;
  width: 70.71%;
  height: 70.71%;
  transform: rotate(45deg) translate(-15px, 15px);
  border: 4px solid;
  border-image-source: linear-gradient(180deg, #FE7E23 0%, #FDD8BE 40.87%);
  border-image-slice: 1;
  z-index: 0;
}
.hotel-partners .diamond-image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hotel-partners .diamond-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1024px) {
  .hotel-partners .hotel-partners-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hotel-partners .hotel-partners-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .hotel-partners .diamond-frame-container {
    width: 280px;
    height: 280px;
  }
}
.partners-logos {
  padding: 80px 0;
  background: #F8F8F8;
}
.partners-logos .section-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  .partners-logos .section-title br {
    display: none;
  }
}
.partners-logos .logos-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.partners-logos .logos-slider .logos-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.partners-logos .logos-slider .logos-track:hover {
  animation-play-state: paused;
}
.partners-logos .logos-slider .logo-item {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.partners-logos .logos-slider .logo-item img {
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.partners-logos .logos-slider .logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hotel-hosting {
  padding: 80px 0;
}
.hotel-hosting .section-title {
  margin-bottom: 60px;
}
.hotel-hosting .section-title .highlight {
  color: #FF6B35;
}
.hotel-hosting .hosting-process {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  position: relative;
}
.hotel-hosting .hosting-process svg {
  max-width: 100%;
  height: auto;
}
.hotel-hosting .process-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hotel-hosting .process-column.left {
  align-items: flex-end;
  text-align: right;
}
.hotel-hosting .process-column.right {
  align-items: flex-start;
}
.hotel-hosting .process-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hotel-hosting .process-item .process-icon {
  width: 50px;
  height: 50px;
  background: #FF6B35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotel-hosting .process-item .process-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.hotel-hosting .process-item .process-label {
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}
.hotel-hosting .process-item .process-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}
.hotel-hosting .process-center {
  position: relative;
}
.hotel-hosting .process-center .center-logo {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #1A1A2E, #16213E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.hotel-hosting .process-center .center-logo img {
  max-width: 80px;
}

@media (max-width: 768px) {
  .hotel-hosting .hosting-process {
    flex-direction: column;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.partner-stories {
  padding: 80px 0;
  background: #282121 url("../../../assets/images/hotel/partner-stories/pattern.png") no-repeat right bottom;
  color: #FFFFFF;
}
.partner-stories .section-title {
  color: #FFFFFF;
  margin-bottom: 50px;
}
.partner-stories .stories-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: flex-start;
}
.partner-stories .stories-logos {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding: 30px;
}
.partner-stories .stories-logos .story-logo-item {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.partner-stories .stories-logos .story-logo-item .story-logo {
  max-width: 140px;
  height: auto;
  opacity: 0.5;
  filter: grayscale(1) brightness(2);
  transition: all 0.3s ease;
}
.partner-stories .stories-logos .story-logo-item:hover .story-logo {
  opacity: 0.8;
}
.partner-stories .stories-logos .story-logo-item.active {
  background: #201A1A;
  border-radius: 18px;
}
.partner-stories .stories-logos .story-logo-item.active .story-logo {
  opacity: 1;
  filter: none;
}
.partner-stories .stories-logos .story-logo-item.active::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 79px;
  background: #FF6B35;
}
.partner-stories .stories-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.partner-stories .stories-content.active {
  display: block;
}
.partner-stories .stories-content .story-brand {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FE7E23;
}
.partner-stories .stories-content .story-text {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 15px;
}
.partner-stories .stories-image {
  border-radius: 15px;
  overflow: hidden;
}
.partner-stories .stories-image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .partner-stories .stories-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .partner-stories .stories-logos {
    flex-direction: row;
    overflow-x: auto;
    border-radius: 15px;
    padding: 15px;
    gap: 15px;
    scroll-behavior: smooth;
  }
  .partner-stories .stories-logos::-webkit-scrollbar {
    height: 4px;
  }
  .partner-stories .stories-logos::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
  }
  .partner-stories .stories-logos::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 4px;
  }
}
@media (max-width: 1024px) and (min-width: 700px) {
  .partner-stories .stories-logos {
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .partner-stories .stories-logos .story-logo-item {
    min-width: 120px;
    height: 80px;
  }
  .partner-stories .stories-logos .story-logo-item .story-logo {
    max-width: 100px;
  }
  .partner-stories .stories-logos .story-logo-item.active::after {
    content: none;
  }
}
.testimonials {
  padding: 100px 0;
}
.testimonials .section-title {
  margin-bottom: 10px;
}
.testimonials .section-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 60px;
}
.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonials .testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(360deg, #FE7E23 0%, #E6E6E6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.testimonials .testimonial-card .quote-icon {
  position: absolute;
  background: #FFFFFF;
  padding: 0 10px;
}
.testimonials .testimonial-card .quote-icon.start-quote {
  top: -15px;
  left: 30px;
  color: #FF6B35;
}
.testimonials .testimonial-card .quote-icon.start-quote svg {
  width: 32px;
  height: auto;
}
.testimonials .testimonial-card .quote-icon.end-quote {
  bottom: -15px;
  right: 30px;
  color: #CECECE;
}
.testimonials .testimonial-card .quote-icon.end-quote svg {
  width: 32px;
  height: auto;
}
.testimonials .testimonial-card .testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  font-style: italic;
  margin-bottom: 25px;
  margin-top: 10px;
}
.testimonials .testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
}
.testimonials .testimonial-card .testimonial-footer .client-logo {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .testimonials .section-desc {
    margin-bottom: 20px;
  }
  .testimonials .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonials .testimonials-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .testimonials .testimonial-card {
    min-width: 300px;
    scroll-snap-align: start;
  }
}
@media (max-width: 600px) {
  .testimonials .testimonial-card {
    min-width: 85vw;
  }
}/*# sourceMappingURL=hotel.css.map */