/* Navigation Bar Styles */
.navbar {
  background-color: #ffffff;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: 70px;
}

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

/* Logo Styles */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 20px 0;
  font-size: 24px;
  font-weight: bold;
  color: #dc3545;
  text-decoration: none;
}

.logo-text {
  color: #dc3545;
  font-family: "Arial", sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.5px;
}

/* Navigation Links */
.navbar-nav {
  align-items: center;
  gap: 35px;
}

.nav-link {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  padding: 25px 0;
  text-decoration: none;
  font-family: "Arial", sans-serif;
}

.nav-link:hover {
  color: #dc3545;
}

/* Download Button */
.download-btn {
  background-color: #fc5155;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

.download-btn:hover {
  background-color: #e8464a;
  color: #ffffff;
}

/* Global Responsive Rules */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

/* Mobile Responsive */
.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Global fix for all animated sections - ensure content is always visible */
.app-feature-card,
.trust-feature-item {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

/* Allow modern hospitality animations to work properly */
.modern-hospitality-section .hospitality-content {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

.modern-hospitality-section.animate-in .hospitality-content {
  opacity: 1 !important;
  visibility: visible !important;
  animation: contentPulse 2s ease-in-out infinite !important;
  transform: none !important;
}

.modern-hospitality-section .hospitality-laptop {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

.modern-hospitality-section.animate-in .hospitality-laptop {
  opacity: 1 !important;
  visibility: visible !important;
  animation: laptopFloat 4s ease-in-out infinite !important;
  transform: none !important;
}

.modern-hospitality-section .feature-list li {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

.modern-hospitality-section.animate-in .feature-list li {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

.modern-hospitality-section.animate-in .feature-list li:nth-child(odd) {
  animation: listItemPulse 3s ease-in-out infinite !important;
}

.modern-hospitality-section.animate-in .feature-list li:nth-child(even) {
  animation: listItemPulse 3s ease-in-out infinite 1.5s !important;
}

.modern-hospitality-section .collaboration-text {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

.modern-hospitality-section.animate-in .collaboration-text {
  opacity: 1 !important;
  visibility: visible !important;
  animation: textGlow 2.5s ease-in-out infinite !important;
  transform: none !important;
}

.modern-hospitality-section .contact-info {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

.modern-hospitality-section.animate-in .contact-info:nth-child(1) {
  animation: contactPulse 2s ease-in-out infinite !important;
}

.modern-hospitality-section.animate-in .contact-info:nth-child(2) {
  animation: contactPulse 2s ease-in-out infinite 1s !important;
}

/* Modern Hospitality Loop Animations */
.modern-hospitality-section.animate-in .hospitality-content {
  animation: contentPulse 2s ease-in-out infinite !important;
}

.modern-hospitality-section.animate-in .hospitality-laptop {
  animation: laptopFloat 4s ease-in-out infinite !important;
}

.modern-hospitality-section.animate-in .feature-list li:nth-child(odd) {
  animation: listItemPulse 3s ease-in-out infinite !important;
}

.modern-hospitality-section.animate-in .feature-list li:nth-child(even) {
  animation: listItemPulse 3s ease-in-out infinite 1.5s !important;
}

.modern-hospitality-section.animate-in .collaboration-text {
  animation: textGlow 2.5s ease-in-out infinite !important;
}

.modern-hospitality-section.animate-in .contact-info:nth-child(1) {
  animation: contactPulse 2s ease-in-out infinite !important;
}

.modern-hospitality-section.animate-in .contact-info:nth-child(2) {
  animation: contactPulse 2s ease-in-out infinite 1s !important;
}

/* Allow key features animations to work */
.key-features-section .feature-card {
  opacity: 0 !important;
  visibility: visible !important;
  animation: none !important;
  transform: translateY(50px) scale(0.9) !important;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.key-features-section .feature-card.animate-in {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.key-features-section .feature-card.animate-in:hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.2s ease-out !important;
}

/* Fix section titles and subtitles */
.section-title,
.features-title,
.trust-reliability-title,
.modern-hospitality-title,
.seamless-app-experience-title,
.smarter-hotel-living-title,
.section-subtitle,
.features-subtitle,
.trust-reliability-subtitle,
.seamless-app-experience-description,
.smarter-hotel-living-subtitle {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

/* Mobile debugging - Ensure download buttons are always visible */
@media (max-width: 768px) {
  .hero-section .app-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 25px !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 100 !important;
  }
  
  .hero-section .app-download-btn {
    display: flex !important;
    width: 100% !important;
    max-width: 300px !important;
    min-width: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #ffffff !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    z-index: 100 !important;
    transform: none !important;
  }

  /* Trust & Reliability section mobile fixes */
  .trust-reliability-section .trust-feature-item {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transform: none !important;
    display: block !important;
  }

  .trust-reliability-section .trust-icon-circle {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .trust-reliability-section .trust-feature-title,
  .trust-reliability-section .trust-feature-description {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Extra Small Devices (iPhone SE, etc.) */
@media (max-width: 375px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  .hero-description {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  .app-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }

  .app-download-btn {
    width: 100%;
    min-width: auto;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Small Devices (iPhone 12, Pixel, etc.) */
@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .download-btn {
    font-size: 14px;
    padding: 8px 20px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 18px;
    line-height: 1.5;
  }

  .app-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }

  .app-download-btn {
    width: 100%;
    min-width: auto;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .section-title,
  .features-title,
  .trust-reliability-title,
  .modern-hospitality-title,
  .seamless-app-experience-title,
  .smarter-hotel-living-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  .section-subtitle,
  .features-subtitle,
  .trust-reliability-subtitle,
  .seamless-app-experience-description,
  .smarter-hotel-living-subtitle {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  .feature-card,
  .app-feature-card,
  .trust-feature-item {
    margin-bottom: 20px;
    padding: 20px 15px;
  }

  .ellipse-image {
    width: 250px !important;
    height: 250px !important;
  }

  .iphone-mockup {
    max-width: 200px !important;
  }

  .laptop-image {
    max-width: 100% !important;
    position: static !important;
    right: auto !important;
    transform: none !important;
    margin-top: 30px;
    object-fit: contain;
    display: block;
    margin-left: auto;
  }
}

/* Medium Devices (Samsung Galaxy, iPad Mini, etc.) */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 20px;
    line-height: 1.5;
  }

  .app-buttons {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 25px;
  }

  .app-download-btn {
    width: 100%;
    max-width: 300px;
    min-width: auto;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .section-title,
  .features-title,
  .trust-reliability-title,
  .modern-hospitality-title,
  .seamless-app-experience-title,
  .smarter-hotel-living-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .section-subtitle,
  .features-subtitle,
  .trust-reliability-subtitle,
  .seamless-app-experience-description,
  .smarter-hotel-living-subtitle {
    font-size: 18px;
    line-height: 1.5;
  }

  .feature-card,
  .app-feature-card,
  .trust-feature-item {
    margin-bottom: 25px;
    padding: 25px 20px;
  }

  .ellipse-image {
    width: 300px !important;
    height: 300px !important;
  }

  .iphone-mockup {
    max-width: 220px !important;
  }

  .laptop-image {
    max-width: 100% !important;
    position: static !important;
    right: auto !important;
    transform: none !important;
    margin-top: 30px;
    object-fit: contain;
    display: block;
    margin-left: auto;
  }

  .modern-hospitality-section {
    padding: 60px 0;
  }

  .modern-hospitality-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  .feature-list li {
    margin-bottom: 20px;
  }

  .feature-list li h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .feature-list li p {
    font-size: 14px;
    line-height: 1.5;
  }

  .collaboration-text {
    font-size: 18px;
    line-height: 1.4;
  }

  .contact-info {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Large Devices (iPad, Surface, etc.) */
@media (max-width: 992px) {
  .hero-section {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 22px;
    line-height: 1.5;
  }

  .app-buttons {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }

  .app-download-btn {
    min-width: 200px;
  }

  .section-title,
  .features-title,
  .trust-reliability-title,
  .modern-hospitality-title,
  .seamless-app-experience-title,
  .smarter-hotel-living-title {
    font-size: 40px;
    line-height: 1.3;
  }

  .section-subtitle,
  .features-subtitle,
  .trust-reliability-subtitle,
  .seamless-app-experience-description,
  .smarter-hotel-living-subtitle {
    font-size: 20px;
    line-height: 1.5;
  }

  .feature-card,
  .app-feature-card,
  .trust-feature-item {
    padding: 30px 25px;
  }

  .ellipse-image {
    width: 350px !important;
    height: 350px !important;
  }

  .iphone-mockup {
    max-width: 250px !important;
  }

  .laptop-image {
    max-width: 100% !important;
    transform: scale(1) !important;
    object-fit: contain;
  }

  .modern-hospitality-section {
    padding: 80px 0;
  }

  .modern-hospitality-title {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 35px;
  }

  .feature-list li {
    margin-bottom: 22px;
  }

  .feature-list li h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  .feature-list li p {
    font-size: 16px;
    line-height: 1.5;
  }

  .collaboration-text {
    font-size: 20px;
    line-height: 1.4;
  }

  .contact-info {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Extra Large Devices (Desktop, Large Tablets) */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 52px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 24px;
    line-height: 1.5;
  }

  .laptop-image {
    max-width: 100%;
    transform: scale(1);
    object-fit: contain;
  }
}

@media (min-width: 1400px) {
  .laptop-image {
    max-width: 110%;
    margin-right: -5%;
    transform: scale(1);
  }
}

/* Large Desktop Screens */
@media (min-width: 1600px) {
  .laptop-image {
    max-width: 120%;
    margin-right: -10%;
    transform: scale(1);
  }
}

/* Landscape Orientation Fixes */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-section {
    padding: 30px 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }

  .hero-description {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
  }

  .app-buttons {
    flex-direction: row;
    gap: 15px;
  }

  .app-download-btn {
    min-width: 180px;
    padding: 10px 15px;
  }

  .section-title,
  .features-title,
  .trust-reliability-title,
  .modern-hospitality-title,
  .seamless-app-experience-title,
  .smarter-hotel-living-title {
    font-size: 40px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }

  .section-subtitle,
  .features-subtitle,
  .trust-reliability-subtitle,
  .seamless-app-experience-description,
  .smarter-hotel-living-subtitle {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin-bottom: 30px !important;
  }

  .ellipse-image {
    width: 200px !important;
    height: 200px !important;
  }

  .iphone-mockup {
    max-width: 180px !important;
  }
}

/* Nest Hub and Similar Square Devices */
@media (max-width: 1024px) and (max-height: 1024px) and (orientation: portrait) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 36px !important;
    line-height: 1.3 !important;
  }

  .hero-description {
    font-size: 18px !important;
    line-height: 1.5 !important;
  }

  .app-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .app-download-btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Hero Section Styles */
.hero-section {
  background-image: url("assets/frames-for-your-heart-zSG-kd-L6vw-unsplash 1.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.hero-image {
  text-align: center;
  position: relative;
}

@keyframes heroContentSlideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroImageSlideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.2;
  font-family: "Arial", sans-serif;
}

.hero-description {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: "Arial", sans-serif;
  max-width: 500px;
}

.app-buttons {
  display: flex !important;
  gap: 20px;
  margin-top: 30px;
  opacity: 1 !important;
  visibility: visible !important;
}

.app-download-btn {
  display: flex !important;
  align-items: center;
  padding: 12px 20px;
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
  border-radius: 8px;
  text-decoration: none;
  min-width: 160px;
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
}

.app-download-btn:hover {
  color: #000000;
  text-decoration: none;
  background-color: #ffffff;
}

.app-download-btn i {
  font-size: 24px;
  margin-right: 12px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-small-text {
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-large-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.app-store-btn i {
  font-size: 28px;
}

.app-store-btn .btn-small-text {
  font-size: 9px;
}

.app-store-btn .btn-large-text {
  font-size: 15px;
}

.hero-image {
  text-align: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-image img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation-play-state: paused;
}

/* Personal Hotel Service Assistant Section */
.personal-assistant-section {
  background-color: #f9fafb;
  padding: 80px 0;
}

.personal-assistant-section .section-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.5px;
  text-align: center;
  color: #1a202c;
  margin-bottom: 20px;
  width: 870px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}

.personal-assistant-section .section-description {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  margin: 0 20px 40px 20px;
  color: #4a5568;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes assistantSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .personal-assistant-section .section-title {
    width: auto;
    left: auto;
    position: static;
  }
}

@media (max-width: 992px) {
  .personal-assistant-section .section-title {
    font-size: 16px;
    line-height: 40px;
    width: auto;
  }

  .personal-assistant-section .section-description {
    font-size: 16px;
    line-height: 24px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .personal-assistant-section .section-title {
    font-size: 16px;
    line-height: 32px;
  }

  .personal-assistant-section .section-description {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Key Features Section */
.key-features-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.key-features-section .features-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 24px;
  color: #1a202c;
  text-align: center;
  margin-bottom: 20px;
}

.key-features-section .features-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #4a5568;
  margin-bottom: 50px;
}

/* Scroll-triggered animations for Key Features */
.key-features-section .feature-card {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.key-features-section .feature-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.key-features-section .feature-card.animate-in:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-out !important;
}

/* Staggered animations for feature cards */
.key-features-section .row .col-lg-4:nth-child(1) .feature-card {
  transition-delay: 0.1s !important;
}

.key-features-section .row .col-lg-4:nth-child(2) .feature-card {
  transition-delay: 0.2s !important;
}

.key-features-section .row .col-lg-4:nth-child(3) .feature-card {
  transition-delay: 0.3s !important;
}

.key-features-section .row .col-lg-4:nth-child(4) .feature-card {
  transition-delay: 0.4s !important;
}

.key-features-section .row .col-lg-4:nth-child(5) .feature-card {
  transition-delay: 0.5s !important;
}

/* Floating animation for feature icons */
.key-features-section .feature-icon {
  transition: transform 0.3s ease;
}

.key-features-section .feature-card.animate-in .feature-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}


@keyframes featuresSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes featureCardSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-out !important;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: #fc51551a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  margin-left: 2px;
}

.feature-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature-card .feature-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1a202c;
  margin-bottom: 12px;
  text-align: left;
}

.feature-card .feature-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  text-align: left;
}

/* Features Section Responsive */
@media (max-width: 992px) {
  .key-features-section .features-title {
    font-size: 36px;
    line-height: 40px;
  }

  .key-features-section .features-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .feature-card {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .key-features-section {
    padding: 60px 0;
  }

  .key-features-section .features-title {
    font-size: 28px;
    line-height: 32px;
  }

  .key-features-section .features-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 40px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .feature-icon img {
    width: 20px;
    height: 20px;
  }

  .feature-card .feature-title {
    font-size: 18px;
    line-height: 24px;
  }

  .feature-card .feature-description {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Designed for Modern Hospitality Section */
.modern-hospitality-section {
  background-color: #111827;
  padding: 100px 0;
  color: #ffffff;
  overflow: hidden;
  min-height: 600px;
}

.hospitality-content {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.hospitality-content.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.hospitality-laptop {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out 0.5s;
}

.hospitality-laptop.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.modern-hospitality-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 40px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease-out;
}

.feature-list li.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.feature-list li:nth-child(1) { transition-delay: 0.1s; }
.feature-list li:nth-child(2) { transition-delay: 0.2s; }
.feature-list li:nth-child(3) { transition-delay: 0.3s; }
.feature-list li:nth-child(4) { transition-delay: 0.4s; }

.checkmark-icon {
  width: 24px;
  height: 24px;
  background-color: #fc5155;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  position: relative;
}

.checkmark-icon::after {
  content: "✓";
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

.feature-list li h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.feature-list li p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
  margin: 0;
}

.collaboration-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  margin: 0 0 16px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out 0.5s;
}

.collaboration-text.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-info {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  line-height: 40px;
  word-spacing: 2px;
  color: #ffffff;
  margin: 0 0 16px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out 0.6s;
}

.contact-info.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.laptop-image {
  max-width: 100%;
  height: auto;
  position: relative;
  margin-right: -130px;
  transform: scale(1);
  object-fit: contain;
  display: block;
  margin-left: auto;
}

/* Modern Hospitality Section Responsive */
@media (max-width: 992px) {
  .modern-hospitality-section {
    padding: 60px 0;
  }

  .modern-hospitality-title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 30px;
  }

  .feature-list li {
    margin-bottom: 20px;
  }

  .feature-list li h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .feature-list li p {
    font-size: 14px;
    line-height: 20px;
  }

  .collaboration-text {
    font-size: 18px;
    line-height: 24px;
  }

  .contact-info {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .modern-hospitality-section {
    padding: 40px 0;
  }

  .modern-hospitality-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 24px;
  }

  .feature-list {
    margin-bottom: 30px;
  }

  .feature-list li {
    margin-bottom: 16px;
  }

  .checkmark-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }

  .checkmark-icon::after {
    font-size: 12px;
  }

  .laptop-image {
    margin-top: 30px;
  }
}

/* Seamless App Experience Section */
.seamless-app-experience-section {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.phone-mockup-container {
  position: relative;
  display: inline-block;
}

.ellipse-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  z-index: 1;
  opacity: 0;
  animation: ellipseSlideIn 1s ease-out forwards;
}

.iphone-mockup {
  position: relative;
  z-index: 2;
  max-width: 280px;
  height: auto;
  opacity: 0;
  animation: phoneSlideIn 1s ease-out 0.5s forwards;
}

.seamless-app-experience-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #1a202c;
  margin-bottom: 16px;
  white-space: nowrap;
  opacity: 0;
  animation: seamlessTitleSlideIn 1s ease-out forwards;
}

.seamless-app-experience-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #4a5568;
  margin-bottom: 40px;
  opacity: 0;
  animation: seamlessTitleSlideIn 1s ease-out 0.2s forwards;
}

.seamless-app-experience-section .app-feature-card {
  opacity: 0;
  animation: seamlessFeatureCardSlideIn 1s ease-out forwards;
}

.seamless-app-experience-section .app-feature-card:nth-child(1) {
  animation-delay: 0.4s;
}

.seamless-app-experience-section .app-feature-card:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes ellipseSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, 100px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes phoneSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes seamlessTitleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes seamlessFeatureCardSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-feature-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  opacity: 0;
  animation: seamlessFeatureCardSlideIn 1s ease-out forwards;
}

.app-feature-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.app-feature-icon {
  width: 56px;
  height: 56px;
  background-color: #fc51551a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.app-feature-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.app-feature-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1a202c;
  margin-bottom: 8px;
}

.app-feature-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

/* Seamless App Experience Section Responsive */
@media (max-width: 992px) {
  .seamless-app-experience-section {
    padding: 60px 0;
  }

  .seamless-app-experience-title {
    font-size: 36px;
    line-height: 40px;
  }

  .seamless-app-experience-description {
    font-size: 16px;
    line-height: 24px;
  }

  .ellipse-image {
    width: 250px;
    height: 250px;
  }

  .iphone-mockup {
    max-width: 230px;
  }

  .app-feature-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .seamless-app-experience-section {
    padding: 40px 0;
  }

  .seamless-app-experience-title {
    font-size: 28px;
    line-height: 32px;
  }

  .seamless-app-experience-description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .phone-mockup-container {
    margin-bottom: 30px;
  }

  .ellipse-image {
    width: 200px;
    height: 200px;
  }

  .iphone-mockup {
    max-width: 180px;
  }

  .app-feature-card {
    padding: 16px;
    margin-bottom: 20px;
  }

  .app-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .app-feature-icon img {
    width: 20px;
    height: 20px;
  }

  .app-feature-title {
    font-size: 18px;
    line-height: 24px;
  }

  .app-feature-description {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Trust & Reliability Section */
.trust-reliability-section {
  background-color: #f9fafb;
  padding: 80px 0;
}

.trust-reliability-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 24px;
  color: #1a202c;
  text-align: center;
  margin-bottom: 20px;
}

.trust-reliability-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #4a5568;
  margin-bottom: 60px;
}

.trust-feature-item {
  padding: 0 20px;
}

/* Staggered animations for trust features */
.trust-reliability-section .row .col-lg-3:nth-child(1) .trust-feature-item {
  animation-delay: 0.4s;
}

.trust-reliability-section .row .col-lg-3:nth-child(2) .trust-feature-item {
  animation-delay: 0.6s;
}

.trust-reliability-section .row .col-lg-3:nth-child(3) .trust-feature-item {
  animation-delay: 0.8s;
}

.trust-reliability-section .row .col-lg-3:nth-child(4) .trust-feature-item {
  animation-delay: 1s;
}

@keyframes trustSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustFeatureSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.trust-feature-item {
  padding: 0 20px;
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

.trust-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-icon-circle.green {
  background-color: #dcfce7;
}

.trust-icon-circle.blue {
  background-color: #dbeafe;
}

.trust-icon-circle.purple {
  background-color: #f3e8ff;
}

.trust-icon-circle.orange {
  background-color: #ffedd5;
}

.trust-icon-circle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.trust-feature-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1a202c;
  margin-bottom: 12px;
}

.trust-feature-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

/* Trust & Reliability Section Responsive */
@media (max-width: 992px) {
  .trust-reliability-section {
    padding: 60px 0;
  }

  .trust-reliability-title {
    font-size: 36px;
    line-height: 40px;
  }

  .trust-reliability-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  .trust-icon-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }

  .trust-icon-circle img {
    width: 28px;
    height: 28px;
  }

  .trust-feature-title {
    font-size: 18px;
    line-height: 24px;
  }

  .trust-feature-description {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .trust-reliability-section {
    padding: 40px 0;
  }

  .trust-reliability-title {
    font-size: 40px;
    line-height: 32px;
  }

  .trust-reliability-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .trust-icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .trust-icon-circle img {
    width: 24px;
    height: 24px;
  }

  .trust-feature-item {
    padding: 0 15px;
    margin-bottom: 30px;
  }
}

/* Experience Smarter Hotel Living Section */
.smarter-hotel-living-section {
  background: linear-gradient(90deg, #fc5155 0%, #e8464a 100%);
  padding: 80px 0;
  color: #ffffff;
}

.smarter-hotel-living-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.smarter-hotel-living-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}


.smarter-hotel-living-section .app-download-btn:nth-child(1) {
  animation-delay: 0.3s;
}

.smarter-hotel-living-section .app-download-btn:nth-child(2) {
  animation-delay: 0.6s;

}

@keyframes smarterSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes smarterButtonSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.btn-app-download img {
  height: 60px;
}

/* Smarter Hotel Living Section Responsive */
@media (max-width: 992px) {
  .smarter-hotel-living-section {
    padding: 60px 0;
  }

  .smarter-hotel-living-title {
    font-size: 36px;
    line-height: 40px;
  }

  .smarter-hotel-living-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .btn-app-download img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .smarter-hotel-living-section {
    padding: 40px 0;
  }

  .smarter-hotel-living-title {
    font-size: 28px;
    line-height: 32px;
  }

  .smarter-hotel-living-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .btn-app-download img {
    height: 45px;
  }

  .d-flex.justify-content-center {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .me-3 {
    margin-right: 0 !important;
  }
}

/* Footer Section */
.footer-section {
  background-color: #262f3b;
  color: #ffffff;
  padding: 60px 0 20px 0;
}

.footer-brand img {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
}

.footer-brand p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
  margin: 0;
}

.footer-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
  text-decoration: none;
}

.footer-links li a:hover {
  color: #fc5155;
}

.footer-section .col-lg-3 p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #fc5155;
  color: #ffffff;
}

.social-icon i {
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  margin-top: 40px;
}

.footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #9ca3af;
  margin: 0;
}

/* Footer Section Responsive */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 20px 0;
  }

  .footer-brand img {
    max-width: 120px;
  }

  .footer-brand p,
  .footer-links li a,
  .footer-section .col-lg-3 p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-icon i {
    font-size: 14px;
  }
}

/* Contact Us Section */
.privacy-policy-section {
  background-color: #ffffff;
  padding: 80px 0;
}

/* Contact Page Animations */
.contact-title {
  opacity: 0;
  animation: contactSlideIn 1s ease-out forwards;
}

.contact-item {
  opacity: 0;
  animation: contactItemSlideIn 1s ease-out forwards;
}

/* Staggered animations for contact items */
.contact-section .row .col-lg-4:nth-child(1) .contact-item {
  animation-delay: 0.2s;
}

.contact-section .row .col-lg-4:nth-child(2) .contact-item {
  animation-delay: 0.4s;
}

.contact-section .row .col-lg-4:nth-child(3) .contact-item {
  animation-delay: 0.6s;
}

.message-us-title {
  opacity: 0;
  animation: messageSlideIn 1s ease-out forwards;
}

.message-form .form-control,
.message-form .send-message-btn {
  opacity: 0;
  animation: formElementSlideIn 1s ease-out forwards;
}

/* Staggered animations for form elements */
.message-form .form-control:nth-child(1) {
  animation-delay: 0.3s;
}

.message-form .form-control:nth-child(2) {
  animation-delay: 0.4s;
}

.message-form .form-control:nth-child(3) {
  animation-delay: 0.5s;
}

.message-form .form-control:nth-child(4) {
  animation-delay: 0.6s;
}

.message-form .form-control:nth-child(5) {
  animation-delay: 0.7s;
}

.message-form .send-message-btn {
  animation-delay: 0.8s;
}

@keyframes contactSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactItemSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formElementSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  padding-top: 60px;
  line-height: 48px;
  letter-spacing: -0.5px;
  text-align: center;
  color: #fc5155;
  margin-bottom: 60px;
}

.contact-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}

.contact-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon-circle {
  width: 80px;
  height: 80px;
  background-color: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon-circle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contact-item-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1a202c;
  margin-bottom: 12px;
}

.contact-item-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

/* Privacy Policy Page Animations */
.privacy-policy-title {
  opacity: 0;
  animation: privacySlideIn 1s ease-out forwards;
}

.privacy-content {
  opacity: 1;
  animation: privacyContentSlideIn 1s ease-out forwards;
}

.policy-section {
  opacity: 1;
  animation: privacyContentSlideIn 1s ease-out forwards;
}

/* Staggered animations for policy sections */
.privacy-policy-section .policy-section:nth-child(1) {
  animation-delay: 0.2s;
}

.privacy-policy-section .policy-section:nth-child(2) {
  animation-delay: 0.4s;
}

.privacy-policy-section .policy-section:nth-child(3) {
  animation-delay: 0.6s;
}

.privacy-policy-section .policy-section:nth-child(4) {
  animation-delay: 0.8s;
}

.privacy-policy-section .policy-section:nth-child(5) {
  animation-delay: 1s;
}

.privacy-policy-section .policy-section:nth-child(6) {
  animation-delay: 1.2s;
}

.privacy-policy-section .policy-section:nth-child(7) {
  animation-delay: 1.4s;
}

.privacy-policy-section .policy-section:nth-child(8) {
  animation-delay: 1.6s;
}

.privacy-policy-section .policy-section:nth-child(9) {
  animation-delay: 1.8s;
}

.privacy-policy-section .policy-section:nth-child(10) {
  animation-delay: 2s;
}

@keyframes privacySlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subsection-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #1a202c;
  margin: 20px 0 10px 0;
}

.privacy-policy-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  padding-top: 10px;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: #fc5155;
  margin-bottom: 20px;
  text-align: center;
}

.effective-date {
  font-family: "Inter", sans-serif;
  padding-top: 20px;
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
  text-align: left;
}

.privacy-content {
  max-width: 800px;
  margin: 1 auto;
  padding: 0 20px;
}

.intro-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #4a5568;
  margin-bottom: 20px;
  text-align: left;
}

.policy-section {
  margin-bottom: 25px;
  opacity: 1;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 24px;
  color: #1a202c;
  margin-bottom: 12px;
  text-align: left;
}

.section-content {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #4a5568;
  margin-bottom: 20px;
  text-align: left;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.policy-list li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #4a5568;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}

.policy-list li::before {
  content: "•";
  color: black;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-info {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 24px;
  padding: 10px;
  color: white;
  text-align: left !important;
}

/* Terms and Conditions Page Animations */
.terms-conditions-title {
  animation: termsSlideIn 1s ease-out forwards;
}

.terms-content {
  animation: termsContentSlideIn 1s ease-out forwards;
}

.terms-section {
  animation: termsContentSlideIn 1s ease-out forwards;
}

/* Staggered animations for terms sections */
.terms-conditions-section .terms-section:nth-child(1) {
  animation-delay: 0.2s;
}

.terms-conditions-section .terms-section:nth-child(2) {
  animation-delay: 0.4s;
}

.terms-conditions-section .terms-section:nth-child(3) {
  animation-delay: 0.6s;
}

.terms-conditions-section .terms-section:nth-child(4) {
  animation-delay: 0.8s;
}

.terms-conditions-section .terms-section:nth-child(5) {
  animation-delay: 1s;
}

.terms-conditions-section .terms-section:nth-child(6) {
  animation-delay: 1.2s;
}

.terms-conditions-section .terms-section:nth-child(7) {
  animation-delay: 1.4s;
}

.terms-conditions-section .terms-section:nth-child(8) {
  animation-delay: 1.6s;
}

.terms-conditions-section .terms-section:nth-child(9) {
  animation-delay: 1.8s;
}

.terms-conditions-section .terms-section:nth-child(10) {
  animation-delay: 2s;
}

.terms-conditions-section .terms-section:nth-child(11) {
  animation-delay: 2.2s;
}

.terms-conditions-section .terms-section:nth-child(12) {
  animation-delay: 2.4s;
}

.terms-conditions-section .terms-section:nth-child(13) {
  animation-delay: 2.6s;
}

.terms-conditions-section .terms-section:nth-child(14) {
  animation-delay: 2.8s;
}

@keyframes termsSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes termsContentSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.terms-conditions-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  padding-top: 80px;
  letter-spacing: -0.5px;
  color: #fc5155;
  margin-bottom: 20px;
  text-align: center;
}

.terms-content {
  max-width: 800px;
  margin: 1 auto;
  padding: 0 20px;
}

.terms-section {
  margin-bottom: 25px;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.terms-list li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #4a5568;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}

.terms-list li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #4a5568;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}

.terms-list li::before {
  content: "•";
  color: black;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.terms-section .section-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1a202c;
  margin-bottom: 16px;
  text-align: left;
}

.terms-section .section-content {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #4a5568;
  margin-bottom: 16px;
  text-align: left;
}

/* Message Us Section */
.message-us-section {
  /* background-color: #ffffff; */
  padding: 80px 0;
}

.message-us-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 48px;
  letter-spacing: -0.5px;
  text-align: left;
  margin-left: 40px;
}

.message-form {
  background-color: #ffffff;
  padding: 40px;
}

.message-form .form-control {
  padding: 5px 10px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: #4a5568;
  background-color: #ffffff;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
}

.message-form .form-control:focus {
  border-color: #fc5155;
  box-shadow: 0 0 0 3px rgba(252, 81, 85, 0.1);
  outline: none;
}

.message-form .form-control::placeholder {
  color: #a0aec0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.message-form textarea.form-control {
  resize: vertical;
  min-height: 10px;
}

.send-message-btn {
  background-color: #fc5155;
  color: #ffffff;
  border: none;
  border-radius: 0px;
  padding: 12px 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.send-message-btn:hover {
  background-color: #e8464a;
  transform: translateY(-2px);
}

.send-message-btn:active {
  transform: translateY(0);
}

.contact-us-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.5px;
  text-align: center;
  color: #fc5155;
  margin-bottom: 60px;
}

.contact-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}

.contact-icon {
  width: 64px;
  height: 64px;
  background-color: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 24px;
  color: #fc5155;
}

.contact-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 28px;
  color: #1a202c;
  margin-bottom: 12px;
}

.contact-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

/* Message Us Section */
.message-us-section {
  background-color: #f9fafb;
  padding: 80px 0;
}

.message-form-container {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px;
}

.message-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.5px;
  color: #1a202c;
  margin-bottom: 40px;
  text-align: left;
}

.message-form .form-control {
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #4a5568;
}

.message-form .form-control::placeholder {
  color: #a0aec0;
}

.send-message-btn {
  background-color: #fc5155;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  float: right;
}

/* Active Navigation Link */
.nav-link.active {
  color: #fc5155 !important;
}

/* Contact Us Section Responsive */
@media (max-width: 992px) {
  .contact-us-section {
    padding: 60px 0;
  }

  .contact-us-title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .message-us-section {
    padding: 60px 0;
  }

  .message-form-container {
    padding: 32px 24px;
  }

  .message-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .contact-us-section {
    padding: 40px 0;
  }

  .contact-us-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .contact-card {
    padding: 20px 16px;
    margin-bottom: 20px;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .contact-icon i {
    font-size: 20px;
  }

  .message-us-section {
    padding: 40px 0;
  }

  .message-form-container {
    padding: 24px 16px;
  }

  .message-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}

/* Hero Section Mobile Responsive */
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-store-btn img,
  .google-play-btn img {
    height: 50px;
  }

  .hero-image {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  .app-buttons {
    gap: 15px;
  }

  .app-store-btn img,
  .google-play-btn img {
    height: 45px;
  }
}

/* Mobile Animation Optimizations */
@media (max-width: 768px) {

  /* Ensure animations work on mobile */
  .hero-content,
  .hero-image,
  .section-title,
  .section-description,
  .features-title,
  .features-subtitle,
  .feature-card,
  .trust-feature-item,
  .app-feature-card,
  .hospitality-content,
  .hospitality-laptop,
  .smarter-hotel-living-title,
  .smarter-hotel-living-subtitle,
  .app-download-btn {
    opacity: 0;
    animation-fill-mode: forwards;
  }

  /* Adjust animation transforms for smaller screens */
  @keyframes heroContentSlideIn {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes heroImageSlideIn {
    from {
      opacity: 0;
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes assistantSlideIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes featuresSlideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes featureCardSlideIn {
    from {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes contentSlideIn {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes laptopSlideIn {
    from {
      opacity: 0;
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes ellipseSlideIn {
    from {
      opacity: 0;
      transform: translate(-50%, 80px);
    }

    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes phoneSlideIn {
    from {
      opacity: 0;
      transform: translateY(-40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes seamlessTitleSlideIn {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes seamlessFeatureCardSlideIn {
    from {
      opacity: 0;
      transform: translateY(25px) scale(0.95);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes trustSlideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes trustFeatureSlideIn {
    from {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes smarterSlideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes smarterButtonSlideIn {
    from {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* Reduce animation duration for better mobile performance */
  .hero-content {
    animation-duration: 0.8s !important;
  }

  .hero-image {
    animation-duration: 0.8s !important;
  }

  .feature-card,
  .trust-feature-item,
  .app-feature-card {
    animation-duration: 0.6s !important;
  }

  .section-title,
  .features-title,
  .trust-reliability-title,
  .smarter-hotel-living-title {
    animation-duration: 0.7s !important;
  }

  .section-description,
  .features-subtitle,
  .trust-reliability-subtitle,
  .smarter-hotel-living-subtitle {
    animation-duration: 0.7s !important;
  }
}

/* Extra Small Mobile Animation Optimizations */
@media (max-width: 480px) {

  /* Further reduce transforms for very small screens */
  @keyframes heroContentSlideIn {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes heroImageSlideIn {
    from {
      opacity: 0;
      transform: translateX(30px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes featureCardSlideIn {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.9);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes trustFeatureSlideIn {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.9);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes seamlessFeatureCardSlideIn {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.9);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes smarterButtonSlideIn {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.9);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* Even shorter durations for very small screens */
  .hero-content,
  .hero-image {
    animation-duration: 0.6s !important;
  }

  .feature-card,
  .trust-feature-item,
  .app-feature-card {
    animation-duration: 0.5s !important;
  }

  .section-title,
  .features-title,
  .trust-reliability-title,
  .smarter-hotel-living-title {
    animation-duration: 0.6s !important;
  }
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {

  /* Message Form Mobile */
  .message-us-section {
    padding: 40px 20px;
  }

  .message-us-title {
    font-size: 24px;
    line-height: 32px;
    margin-left: 20px;
    margin-bottom: 30px;
  }

  .message-form {
    padding: 20px;
  }

  .message-form .form-control {
    font-size: 14px;
    padding: 10px 12px;
    margin-bottom: 15px;
  }

  .message-form .form-control::placeholder {
    font-size: 14px;
  }

  .message-form textarea.form-control {
    min-height: 100px;
  }

  .send-message-btn {
    padding: 10px 30px;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
  }

  /* Contact Section Mobile */
  .contact-section {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 48px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .contact-item {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .contact-icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .contact-icon-circle img {
    width: 24px;
    height: 24px;
  }

  .contact-item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .contact-item-description {
    font-size: 14px;
    line-height: 20px;
  }

  /* Privacy Policy Mobile */
  .privacy-policy-section {
    padding: 40px 20px;
  }

  .privacy-policy-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .effective-date {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .privacy-content {
    max-width: 100%;
  }

  .section-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .intro-text,
  .section-content,
  .policy-list li,
  .contact-info {
    font-size: 16px;
    line-height: 24px;
  }

  .policy-section {
    margin-bottom: 25px;
  }

  /* Terms and Conditions Mobile */
  .terms-conditions-section {
    padding: 40px 20px;
  }

  .terms-conditions-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .terms-content {
    max-width: 100%;
  }

  .terms-section {
    margin-bottom: 25px;
  }

  .terms-list li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  /* Footer Mobile */
  .footer-section {
    padding: 30px 0 15px 0;
  }

  .footer-brand img {
    max-width: 120px;
    margin-bottom: 15px;
  }

  .footer-brand p,
  .footer-links li a,
  .footer-section .col-lg-3 p {
    font-size: 13px;
    line-height: 18px;
  }

  .footer-title {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 12px;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .social-icon i {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {

  /* Extra Small Mobile */
  .container {
    padding: 0 10px;
  }

  .message-us-title {
    font-size: 20px;
    line-height: 28px;
    margin-left: 10px;
  }

  .message-form {
    padding: 15px;
  }

  .message-form .form-control {
    font-size: 13px;
    padding: 8px 10px;
  }

  .contact-title,
  .privacy-policy-title,
  .terms-conditions-title {
    font-size: 24px;
    line-height: 28px;
  }

  .contact-icon-circle {
    width: 50px;
    height: 50px;
  }

  .contact-icon-circle img {
    width: 20px;
    height: 20px;
  }

  .send-message-btn {
    padding: 8px 20px;
    font-size: 13px;
  }

  /* Hero Section Extra Small Mobile */
  .hero-section {
    padding: 40px 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .app-buttons {
    gap: 10px;
    justify-content: center;
  }

  .app-store-btn img,
  .google-play-btn img {
    height: 40px;
  }

  .hero-image {
    margin-top: 30px;
  }

  /* Personal Assistant Section Mobile */
  .personal-assistant-section {
    padding: 40px 20px;
  }

  .personal-assistant-section .section-title {
    font-size: 18px;
    line-height: 28px;
    width: 100%;
  }

  .personal-assistant-section .section-description {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
  }

  /* Key Features Mobile */
  .key-features-section {
    padding: 40px 20px;
  }

  .key-features-section .features-title {
    font-size: 24px;
    line-height: 28px;
  }

  .key-features-section .features-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .feature-card {
    padding: 15px 12px;
    margin-bottom: 15px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .feature-icon img {
    width: 18px;
    height: 18px;
  }

  .feature-card .feature-title {
    font-size: 16px;
    line-height: 20px;
  }

  .feature-card .feature-description {
    font-size: 13px;
    line-height: 18px;
  }

  /* Modern Hospitality Mobile */
  .modern-hospitality-section {
    padding: 40px 20px;
  }

  .modern-hospitality-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .feature-list li {
    margin-bottom: 15px;
  }

  .checkmark-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }

  .checkmark-icon::after {
    font-size: 10px;
  }

  .feature-list li h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .feature-list li p {
    font-size: 13px;
    line-height: 18px;
  }

  .collaboration-text {
    font-size: 16px;
    line-height: 20px;
  }

  .contact-info {
    font-size: 13px;
    line-height: 18px;
  }

  .laptop-image {
    margin-top: 20px;
    overflow: hidden;
    max-width: 100%;
  }

  /* Seamless App Experience Mobile */
  .seamless-app-experience-section {
    padding: 40px 20px;
  }

  .seamless-app-experience-title {
    font-size: 24px;
    line-height: 28px;
  }

  .seamless-app-experience-description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .ellipse-image {
    width: 150px;
    height: 150px;
  }

  .iphone-mockup {
    max-width: 150px;
  }

  .app-feature-card {
    padding: 12px;
    margin-bottom: 15px;
  }

  .app-feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .app-feature-icon img {
    width: 18px;
    height: 18px;
  }

  .app-feature-title {
    font-size: 16px;
    line-height: 20px;
  }

  .app-feature-description {
    font-size: 13px;
    line-height: 18px;
  }

  /* Trust & Reliability Mobile */
  .trust-reliability-section {
    padding: 40px 20px;
  }

  .trust-reliability-title {
    font-size: 40px;
    line-height: 28px;
  }

  .trust-reliability-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .trust-icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .trust-icon-circle img {
    width: 20px;
    height: 20px;
  }

  .trust-feature-title {
    font-size: 16px;
    line-height: 20px;
  }

  .trust-feature-description {
    font-size: 13px;
    line-height: 18px;
  }

  .trust-feature-item {
    padding: 0 10px;
    margin-bottom: 20px;
  }

  /* Smarter Hotel Living Mobile */
  .smarter-hotel-living-section {
    padding: 40px 20px;
  }

  .smarter-hotel-living-title {
    font-size: 24px;
    line-height: 28px;
  }

  .smarter-hotel-living-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .btn-app-download img {
    height: 40px;
  }

  .d-flex.justify-content-center {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .me-3 {
    margin-right: 0 !important;
  }
}

/* Contact Section Responsive */
@media (max-width: 992px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .contact-item {
    padding: 24px 20px;
  }

  .contact-icon-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }

  .contact-icon-circle img {
    width: 28px;
    height: 28px;
  }

  .contact-item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .contact-item-description {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .contact-item {
    padding: 20px 16px;
    margin-bottom: 20px;
  }

  .contact-icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .contact-icon-circle img {
    width: 24px;
    height: 24px;
  }

  .contact-item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .contact-item-description {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Privacy Policy Section Responsive */
@media (max-width: 992px) {
  .privacy-policy-section {
    padding: 60px 0;
  }

  .privacy-policy-title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .intro-text,
  .section-content,
  .policy-list li,
  .contact-info {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 40px 0;
  }

  .privacy-policy-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 12px;
  }

  .effective-date {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .intro-text,
  .section-content,
  .policy-list li,
  .contact-info {
    font-size: 14px;
    line-height: 20px;
  }

  .policy-section {
    margin-bottom: 30px;
  }
}

/* Terms and Conditions Section Responsive */
@media (max-width: 992px) {
  .terms-conditions-section {
    padding: 60px 0;
  }

  .terms-conditions-title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .intro-text,
  .section-content,
  .terms-list li,
  .contact-info {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .terms-conditions-section {
    padding: 40px 0;
  }

  .terms-conditions-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 12px;
  }

  .effective-date {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .intro-text,
  .section-content,
  .terms-list li,
  .contact-info {
    font-size: 14px;
    line-height: 20px;
  }

  .terms-section {
    margin-bottom: 30px;
  }
}