/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 56px;
  direction: ltr;
  overflow-x: hidden;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 40%, #ffe6f0 100%);
  color: #222;
}

body.rtl {
  direction: rtl;
}

/* Language Switcher */
.language-switcher {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 1000;
}

/* Hero Section - Fixed for mobile */
.hero-section {
    background: url('../images/slide1.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    min-height: 600px; /* Minimum height */
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Hero Slider Adjustments */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 80px;
}


/* Section Padding */
section {
  padding: 80px 0;
}

/* Card Hover Effect */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #fff 60%, #ffe6f0 100%);
  color: #222;
  box-shadow: 0 2px 16px rgba(255,182,193,0.08);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Header Gradient Styles */
.card-header.bg-primary {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%) !important;
  color: white !important;
}

.card-header.bg-success {
  background: linear-gradient(135deg, #26de81 0%, #20bf6b 100%) !important;
  color: white !important;
}

.card-header.bg-info {
  background: linear-gradient(135deg, #45aaf2 0%, #2bcbba 100%) !important;
  color: white !important;
}

.card-header.bg-warning {
  background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%) !important;
  color: white !important;
}

.card-header.bg-danger {
  background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%) !important;
  color: white !important;
}

.card-header.bg-dark {
  background: linear-gradient(135deg, #636e72 0%, #2d3436 100%) !important;
  color: white !important;
}

.card-header.bg-secondary {
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%) !important;
  color: white !important;
}

/* Ensure text in card headers is always white and readable */
.card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6,
.card-header p, .card-header span, .card-header div {
  color: white !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Testimonials */
.testimonial-card {
  border-left: 4px solid #0d6efd;
}

/* Contact Form */
#contactForm {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

/* Social Icons */
.social-icons a {
display: inline-block;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
background: #fff;
color: #764ba2 !important;
border-radius: 50%;
  box-shadow: 0 2px 8px #ffb6c122;
font-size: 1.2rem;
margin: 0 4px;
transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.social-icons a:hover {
background: linear-gradient(90deg, #ffb6c1 0%, #ff69b4 100%);
color: #fff !important;
box-shadow: 0 4px 16px #ffb6c144;
}

/* RTL Adjustments */
body.rtl .navbar-nav {
  padding-right: 0;
}

body.rtl .me-2 {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}

body.rtl .testimonial-card {
  border-left: none;
  border-right: 4px solid #0d6efd;
}

/* Responsive Adjustments - Fixed for mobile */
@media (max-width: 992px) {
  .hero-section {
      height: auto;
      min-height: 80vh;
  }
  
    .hero-slide {
        background-attachment: scroll;
        background-position: top center;
    }
    
    .hero-slide .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
  
  .language-switcher {
      top: 15px;
      right: 15px;
  }
  
  .navbar-collapse {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 15px;
      border-radius: 5px;
      margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
      min-height: 70vh;
      background-size: cover;
      background-position: center;
  }
  
    .hero-slide {
        background-size: cover;
        background-position: center;
    }
  
  .hero-section h1 {
      font-size: 2rem;
      margin-bottom: 15px;
  }
  
  .hero-section .lead {
      font-size: 1.2rem;
  }
  
  section {
      padding: 60px 0;
  }
  
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
  
  .indicator {
      width: 10px;
      height: 10px;
  }
}

@media (max-width: 576px) {
  .hero-section {
      min-height: 60vh;
      background-size: cover;
      background-position: center;
  }
  
  .hero-slide {
      background-size: cover;
      background-position: center;
  }
  
  .hero-section h1 {
      font-size: 1.8rem;
  }
  
  .hero-section .lead {
      font-size: 1rem;
  }
  
    .slider-control {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Sửa lỗi thanh header */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #fff 0%, #ffb6c1 50%, #ffe6f0 100%) !important;
  box-shadow: 0 2px 16px rgba(160,180,255,0.08);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar .navbar-brand, .navbar-nav .nav-link {
color: #3a3a3a !important;
font-weight: 600;
}

/* Sửa lỗi RTL */
body.rtl .navbar-nav {
  padding-right: 0;
}

/* Hiệu ứng scroll */
.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
  z-index: 1030;
}

.navbar-dark .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Language switcher position */
.language-switcher {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 5px;
}

@media (max-width: 992px) {
  .language-switcher {
      top: 70px;
  }
}

/* Language Selector Styles */
.language-selector {
  width: 120px;
}

.language-selector select {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.language-selector select:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Dark theme for dropdown */
.language-selector option {
  background-color: #764ba2;
  color: white;
}

.language-selector, .language-selector select, .language-selector option {
color: #333 !important;
background: #fff !important;
border-radius: 12px;
font-weight: 600;
  border: 1.5px solid #ffb6c1;
}
.language-selector select:focus {
border-color: #ff69b4;
box-shadow: 0 0 0 2px #ffb6c133;
}
.language-selector option {
background: #fff !important;
color: #333 !important;
}

.quick-links, .quick-links a, .list-unstyled a {
color: #333 !important;
font-weight: 600;
border-radius: 8px;
transition: background 0.2s, color 0.2s;
}
.quick-links a:hover, .list-unstyled a:hover {
background: #ffb6c133;
color: #c71585 !important;
}

#about, #contact {
background: rgba(255,255,255,0.85);
border-radius: 32px;
box-shadow: 0 4px 32px rgba(160,180,255,0.12);
padding: 48px 32px;
margin-bottom: 48px;
}
#about h2, #contact h2 {
color: #764ba2;
font-weight: 700;
}
#about ul li, #contact label, #contact p, #contact span {
color: #333;
}

/* RTL adjustments */
body.rtl .language-selector {
  margin-left: 0 !important;
  margin-right: 1rem;
}

/* Responsive styles */
@media (max-width: 992px) {
  .language-selector {
      width: 100%;
      margin: 10px 0;
  }
  
  .language-selector select {
      width: 100%;
  }
}

/* WhatsApp Button - Messenger Style */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  position: relative;
}

/* Messenger-style notification badge */
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #FF0000;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  animation: bounce 2s infinite;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Messenger-style chat bubble (optional) */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  bottom: 10px;
  background: white;
  color: #333;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.3s;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  width: auto;
  padding: 8px 12px;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator.active {
  background-color: white;
  transform: scale(1.2);
}

/* Bubble Container */
.chat-bubble {
position: fixed;
bottom: 100px; /* hoặc cao hơn mobile-toolbar */
right: 24px;
z-index: 1001;
font-family: 'Segoe UI', sans-serif;
}

/* Bubble Header (Icon) */
.bubble-header {
background-color: #25D366;
color: white;
width: 60px;
height: 60px;
border-radius: 50% 60% 55% 45% / 60% 50% 55% 50%;
font-size: 28px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
position: relative;
z-index: 2;
animation: bubbleMorphReal 4s infinite alternate cubic-bezier(.4,2,.6,1);
}
@keyframes bubbleMorphReal {
0%   { border-radius: 50% 60% 55% 45% / 60% 50% 55% 50%; }
20%  { border-radius: 60% 50% 60% 50% / 50% 60% 50% 60%; }
40%  { border-radius: 55% 65% 45% 55% / 65% 55% 45% 55%; }
60%  { border-radius: 60% 50% 60% 50% / 50% 60% 50% 60%; }
80%  { border-radius: 50% 60% 55% 45% / 60% 50% 55% 50%; }
100% { border-radius: 55% 45% 60% 50% / 50% 65% 55% 60%; }
}

/* Bubble Content */
.bubble-content {
position: absolute;
bottom: 70px;
right: 0;
background: #fff;
border-radius: 20px;
padding: 20px;
width: 250px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
transform: scale(0);
opacity: 0;
transform-origin: bottom right;
transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
z-index: 1002;
overflow: hidden;
}

.bubble-content.active {
transform: scale(1);
opacity: 1;
animation: 
  bubbleMorph 12s infinite alternate ease-in-out,
  contentWobble 15s infinite ease-in-out;
}

/* Water bubble animations */
@keyframes bubblePulse {
0%, 100% {
  transform: scale(1);
  box-shadow: 0 4px 20px rgba(255, 182, 193, 0.3);
}
50% {
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(255, 182, 193, 0.4);
}
}

/* Simplified bubble animation for better performance */
@keyframes bubbleWobble {
0%, 100% {
  transform: scale(1);
}
50% {
  transform: scale(1.02);
}
}

/* Removed complex morphing animation for better performance */

@keyframes contentWobble {
0%, 100% {
  transform: scale(1);
}
50% {
  transform: scale(1.01);
}
}

/* Bubble pseudo-elements for water effect */
.bubble-header::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
animation: ripple 2s infinite ease-out;
z-index: -1;
}

@keyframes ripple {
0% {
  transform: scale(0.9);
  opacity: 0.3;
}
100% {
  transform: scale(1.2);
  opacity: 0;
}
}

/* Message content */
.bubble-message {
margin: 0 0 15px;
color: #333;
font-size: 15px;
line-height: 1.5;
animation: textFloat 4s infinite ease-in-out;
}

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

/* Action button */
.bubble-action {
display: inline-block;
background: #25D366;
color: #fff;
text-decoration: none;
padding: 12px 20px;
border-radius: 10px;
font-size: 15px;
font-weight: 500;
transition: all 0.3s ease;
text-align: center;
width: 100%;
box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
position: relative;
overflow: hidden;
}

.bubble-action:hover {
background: #128C7E;
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(18, 140, 126, 0.4);
}

.bubble-action::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: rgba(255, 255, 255, 0.1);
transform: rotate(45deg);
animation: shine 3s infinite;
}

@keyframes shine {
0% {
  left: -50%;
}
100% {
  left: 150%;
}
}

/* Close button */
.bubble-close {
position: absolute;
top: 5px;
right: 10px;
cursor: pointer;
font-size: 18px;
color: #333;
transition: all 0.3s ease;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255, 255, 255, 0.9);
z-index: 1003;
}

.bubble-close:hover {
color: #dc3545;
background: rgba(220, 53, 69, 0.2);
transform: rotate(90deg) scale(1.1);
}

/* Bubble alert - Simplified */
.bubble-alert {
    display: none; /* Hidden by default */
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 25%, #ffb6c1 50%, #ffd1dc 75%, #fff5f5 100%);
    color: #764ba2;
    padding: 20px 30px;
    border-radius: 100px 120px 100px 120px / 120px 100px 120px 100px;
    margin: 10px 16px 8px 16px;
    font-weight: bold;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(220,53,69,0.2),
        0 4px 16px rgba(255,182,193,0.3),
        inset 0 2px 8px rgba(255,255,255,0.4);
    font-size: 1.3rem;
    letter-spacing: 1px;
    border: 3px solid rgba(255,255,255,0.8);
    position: absolute;
    right: 0;
    bottom: 70px;
    min-width: 350px;
    max-width: 500px;
    z-index: 1004;
    transition: all 0.3s ease-out;
    cursor: pointer;
    transform-origin: center bottom;
}

.bubble-alert::before {
    content: '';
    position: absolute;
    top: -15px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: inherit;
    border-radius: 50%;
    box-shadow: inherit;
    z-index: -1;
}

.bubble-alert::after {
    content: '';
    position: absolute;
    top: -25px;
    right: 60px;
    width: 25px;
    height: 25px;
    background: inherit;
    border-radius: 50%;
    box-shadow: inherit;
    z-index: -1;
}

.bubble-alert.hide {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.bubble-alert-blink {
    animation: bubbleCloudBlink 1.2s infinite alternate;
}

.bubble-alert-messenger::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    border-width: 12px 16px 0 16px;
    border-style: solid;
    border-color: #dc3545 transparent transparent transparent;
    filter: drop-shadow(0 2px 4px rgba(220,53,69,0.15));
}
@keyframes bubbleCloudPop {
0% { 
    transform: scale(0.3) translateY(50px);
    opacity: 0;
    filter: blur(5px);
}
50% {
    transform: scale(1.1) translateY(-10px);
    opacity: 0.8;
    filter: blur(0px);
}
100% { 
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: blur(0px);
}
}

@keyframes bubbleCloudBlink {
0% { 
    filter: brightness(1) drop-shadow(0 0 15px rgba(255,182,193,0.6));
    transform: scale(1) rotate(0deg);
}
50% {
    filter: brightness(1.2) drop-shadow(0 0 25px rgba(255,182,193,0.8));
    transform: scale(1.05) rotate(1deg);
}
100% { 
    filter: brightness(1.4) drop-shadow(0 0 35px rgba(255,182,193,1));
    transform: scale(1) rotate(0deg);
}
}
@keyframes bubbleAlertPop {
0% { transform: scale(0.7); opacity: 0; }
80% { transform: scale(1.1); opacity: 1; }
100% { transform: scale(1); }
}
.bubble-alert-messenger.hide {
opacity: 0;
transform: translateY(20px) scale(0.9);
visibility: hidden;
pointer-events: none;
}



/* Accessibility improvements */
[aria-hidden="true"],
[style*="display: none"],
[style*="visibility: hidden"] {
  pointer-events: none !important;
}

[aria-hidden="true"] *,
[style*="display: none"] *,
[style*="visibility: hidden"] * {
  pointer-events: none !important;
}

/* Ensure hidden elements cannot receive focus */
[aria-hidden="true"]:focus,
[style*="display: none"]:focus,
[style*="visibility: hidden"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Focus management for better accessibility */
.modal:not(.show) {
  pointer-events: none !important;
}

.modal:not(.show) * {
  pointer-events: none !important;
}

/* Ensure proper focus indicators */
.btn:focus,
.form-control:focus,
.nav-link:focus,
.bubble-header:focus {
  outline: 2px solid #ffb6c1 !important;
  outline-offset: 2px !important;
}

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #ffb6c1;
  color: #333;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* Footer gradient */
footer {
background: linear-gradient(90deg, #fff 0%, #f8ffae 50%, #ff69b4 100%);
color: #333;
border-top-left-radius: 32px;
border-top-right-radius: 32px;
box-shadow: 0 -2px 24px rgba(67,206,162,0.08);
}
footer h3, footer p, footer a, footer li {
color: #333 !important;
}

.card, .bubble-content, .form-control, .btn, .input-group, .modal-content {
border-radius: 18px !important;
}

.bubble-alert {
background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 50%, #ffb6c1 100%);
color: #764ba2;
border: 2px solid #fff3cd;
box-shadow: 0 2px 12px rgba(220,53,69,0.10);
}

.btn-primary {
background: linear-gradient(90deg, #ff69b4 0%, #ffe6f0 100%);
color: #333;
border: none;
font-weight: 600;
}
.btn-primary:hover {
background: linear-gradient(90deg, #c71585 0%, #185a9d 100%);
color: #fff;
}

.form-control {
background: #fff;
color: #222;
border: 1.5px solid #e3e6ff;
}
.form-control:focus {
border-color: #ffb6c1;
box-shadow: 0 0 0 2px #ffb6c133;
}

body, h1, h2, h3, h4, h5, h6, p, a, label, span, .card, .navbar, .footer, .btn, .form-control, .bubble-message, .bubble-action, .bubble-alert, .language-selector, .quick-links, .list-unstyled a {
color: #764ba2 !important;
}

.navbar, .navbar-brand, .navbar-nav .nav-link, .navbar-toggler-icon {
color: #764ba2 !important;
fill: #764ba2 !important;
}
.navbar-toggler-icon {
  background-image: none !important;
  width: 2em;
  height: 2em;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffecd2 0%, #ffb6c1 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.navbar-toggler-icon span,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  height: 3px;
  width: 70%;
  margin: 3px 0;
  background: #764ba2;
  border-radius: 2px;
}
.navbar-toggler-icon span {
  margin: 3px 0;
}
.navbar-toggler-icon::before {
  margin-top: 0;
}
.navbar-toggler-icon::after {
  margin-bottom: 0;
}


.booking-stats-box {
font-size: 2.2rem;
font-weight: 700;
background: linear-gradient(90deg,#ffecd2 0%,#fcb69f 50%,#ffb6c1 100%);
color: #764ba2;
border-radius: 24px;
box-shadow: 0 2px 16px #ffb6c122;
padding: 24px 16px;
max-width: 500px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.booking-stats-box .star {
color: #FFD700;
font-size: 2.2rem;
margin-left: 8px;
margin-right: 2px;
vertical-align: middle;
}

.navbar-collapse.collapse.show {
background: linear-gradient(90deg, #fff 0%, #ffb6c1 50%, #ffe6f0 100%) !important;
border-bottom-left-radius: 24px;
border-bottom-right-radius: 24px;
box-shadow: 0 2px 16px rgba(160,180,255,0.08);
}

@media (max-width: 768px) {
.booking-stats-box {
  flex-direction: column !important;
  gap: 4px !important;
  padding: 10px 4px !important;
  font-size: 1.2rem !important;
}
.booking-stats-box .mb-3 {
  margin-bottom: 0 !important;
}
}

.bubble-action-water {
display: inline-block;
background: linear-gradient(90deg, #ff69b4 0%, #ffb6c1 100%);
color: #fff;
text-decoration: none;
padding: 16px 32px;
border-radius: 50px;
font-size: 1.2rem;
font-weight: 700;
box-shadow: 0 8px 32px rgba(105,105,105,0.18), 0 2px 8px #ffb6c133;
position: relative;
overflow: hidden;
border: none;
transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
animation: bubbleWaterPulse 2.5s infinite alternate;
}
.bubble-action-water:hover, .bubble-action-water:focus {
transform: scale(1.06) translateY(-2px);
box-shadow: 0 12px 36px rgba(105,105,105,0.22), 0 4px 16px #ffb6c144;
background: linear-gradient(90deg, #ffb6c1 0%, #ff69b4 100%);
}
.bubble-action-water::after {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 180%;
height: 180%;
background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(105,105,105,0.08) 80%, transparent 100%);
transform: translate(-50%,-50%) scale(0.9);
border-radius: 50%;
z-index: 0;
pointer-events: none;
animation: bubbleWaterShine 3.5s infinite alternate;
}
@keyframes bubbleWaterPulse {
0% { box-shadow: 0 8px 32px rgba(105,105,105,0.18), 0 2px 8px #ffb6c133; }
100% { box-shadow: 0 16px 48px rgba(105,105,105,0.22), 0 8px 24px #ffb6c144; }
}
@keyframes bubbleWaterShine {
0% { opacity: 0.7; transform: translate(-50%,-50%) scale(0.9); }
100% { opacity: 1; transform: translate(-50%,-50%) scale(1.05); }
}
.bubble-action-water span, .bubble-action-water i {
position: relative;
z-index: 1;
}

.gallery-section {
  background: transparent;
}
.gallery-grid {
  margin-top: 0;
  margin-bottom: 0;
}
.gallery-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(160,180,255,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #f8f9fa;
}
@media (max-width: 576px) {
  .gallery-img {
    height: 515px !important;
    object-fit: cover !important;
    object-position: top !important;
  }
  
  .chat-bubble {
    bottom: 120px;
    right: 10px;
  }
  
  .bubble-content {
    bottom: 120px;
    right: 0;
    width: 260px;
    padding: 15px;
  }
  
  .bubble-alert {
    bottom: 120px;
    right: 0;
    min-width: 280px;
    max-width: 380px;
    font-size: 1.1rem;
    padding: 15px 25px;
  }
  
  .bubble-alert::before {
    width: 30px;
    height: 30px;
    top: -12px;
    right: 25px;
  }
  
  .bubble-alert::after {
    width: 20px;
    height: 20px;
    top: -20px;
    right: 50px;
  }
}
.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(67,206,162,0.18);
}

.gallery-card {
  position: relative;
  background: #fff;
  border: 3px solid #fcb900;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(252,185,0,0.18), 0 2px 8px #ffb6c133;
  padding: 18px 12px 18px 12px;
  margin-bottom: 18px;
  transition: box-shadow 0.2s, border-color 0.2s;
  z-index: 1;
}
.gallery-card::before {
  content: 'VIP';
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(90deg,#fcb900 60%,#ffecd2 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 18px 6px 16px;
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 2px 8px #fcb90044;
  letter-spacing: 1px;
  z-index: 2;
}
.gallery-caption {
  margin-top: 16px;
  margin-bottom: 8px;
  width: 100%;
  color: #764ba2 !important;
  font-weight: 500;
  font-size: 1.08rem;
  text-align: center;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(160,180,255,0.08);
  padding: 8px 10px 6px 10px;
  letter-spacing: 0.2px;
}
.gallery-card .btn {
  margin-bottom: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.gallery-desc {
  text-align: center;
  width: 100%;
  margin: 12px 0 0 0;
  color: #555;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
}

/* Mobile Toolbar - Facebook Style */
.mobile-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  transform: translateY(0);
  transition: transform 0.3s ease;
  padding: 8px 0;
  justify-content: space-around;
  align-items: center;
}

.mobile-toolbar.show {
  transform: translateY(0);
  display: flex;
}

.mobile-toolbar.hide {
  transform: translateY(100%);
}

/* Chat bubble styles */
.chat-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.bubble-header {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.bubble-header:hover {
    transform: scale(1.1);
}

.bubble-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    animation: slideIn 0.3s ease;
    z-index: 1002;
}

.bubble-content.show {
    display: block;
}

.bubble-message {
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
}

.bubble-action {
    display: block;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: background 0.3s ease;
}

.bubble-action:hover {
    background: #128c7e;
    color: white;
}

.bubble-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    z-index: 10;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.bubble-close:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.bubble-close:active {
    transform: scale(0.95);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

@keyframes bubbleExpand {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes bubbleShrink {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
}

/* Pricing cards styles */
.pricing-card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem;
}

.pricing-card .card-body {
    padding: 2rem;
    background: white;
}

.pricing-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    color: #666;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #ffc107;
    transform: scale(1.05);
}

.pricing-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px;
    position: relative;
}

.pricing-card.featured .card-header {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
}

.pricing-card .card-header .badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.pricing-card .card-body {
    padding: 30px 20px;
}

.pricing-card .card-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 20px;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.mobile-toolbar .toolbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  font-size: 10px;
  padding: 4px 0;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.mobile-toolbar .toolbar-item.active {
  color: #ff69b4;
  background-color: rgba(255, 105, 180, 0.1);
  transform: scale(1.05);
  border-radius: 8px;
  padding: 8px 4px;
}

.mobile-toolbar .toolbar-item i {
  font-size: 20px;
  margin-bottom: 2px;
}

.mobile-toolbar .toolbar-item:hover {
  color: #ff69b4;
  background-color: rgba(255, 105, 180, 0.05);
  transform: scale(1.02);
}

/* Adjust main content for mobile toolbar */
@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }
  
  .mobile-toolbar {
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
  
  .mobile-toolbar .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    padding: 4px 8px;
    transition: color 0.3s ease;
    text-align: center;
  }
  
  .mobile-toolbar .nav-link.active {
    color: #ff69b4;
  }
  
  .mobile-toolbar .nav-link i {
    font-size: 18px;
    margin-bottom: 2px;
  }
  
  .mobile-toolbar .nav-link:hover {
    color: #ff69b4;
  }
  
  /* Keep navbar items visible on mobile */
  .navbar-nav {
    display: flex !important;
  }
  
  /* Show mobile menu button */
  .navbar-toggler {
    display: block !important;
  }
  
  footer {
    margin-bottom: 80px;
  }
  
  .chat-bubble {
    bottom: 100px;
    right: 15px;
  }
  
  .bubble-content {
    bottom: 100px;
    right: 0;
    width: 280px;
  }
  
  .bubble-alert {
    bottom: 100px;
    right: 0;
    min-width: 280px;
    max-width: 380px;
    padding: 12px 20px;
    font-size: 1.1rem;
  }
}

/* Region Switcher */
.region-switcher {
  background: linear-gradient(135deg, #ffe6f0 0%, #ffb6c1 100%);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  box-shadow: 0 4px 16px rgba(255, 182, 193, 0.2);
}

.region-switcher h3 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.region-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.region-btn {
  background: white;
  border: 2px solid #ffb6c1;
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: center;
}

.region-btn:hover {
  background: #ffb6c1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3);
}

.region-btn.active {
  background: #ff69b4;
  border-color: #ff69b4;
  color: white;
}

.region-btn i {
  font-size: 16px;
}

/* Compact sections for mobile */
@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
  }
  
  .hero-slide {
    background-size: cover;
    background-position: center;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .card {
    margin-bottom: 20px;
  }
  
  .region-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .region-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Services section improvements */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.pricing-section {
    background: #f8f9fa;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #f8f9fa);
}

.price-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
}

.price-tag .currency {
    font-size: 1rem;
    font-weight: 500;
}

.price-tag .amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

/* Pricing improvements */
.price-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.price-container .currency {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.price-container .amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.price-container .duration {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

/* Special offers improvements */
.special-offers-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.special-offers-card .card-body {
    padding: 2rem;
}

.special-offers-card h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
}

.offer-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.offer-item h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.offer-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Testimonials improvements */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonialGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(102,126,234,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(102,126,234,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(102,126,234,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(102,126,234,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonialGrain)"/></svg>');
    opacity: 0.5;
}

.testimonials-section .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    overflow: hidden;
}

.testimonials-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonials-section .card-body {
    padding: 2rem;
}

.testimonials-section .fa-star {
    color: #ffc107;
    margin-right: 2px;
}

.testimonials-section .fa-star-half-alt {
    color: #ffc107;
    margin-right: 2px;
}

.testimonials-section .card-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonials-section .rounded-circle {
    border: 3px solid #667eea;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.2);
}

/* Chat bubble active state */
body.chat-bubble-active .bubble-header {
    animation: none !important;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Improved bubble content animation */
.bubble-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 280px;
    display: none;
    z-index: 1000;
    transform-origin: bottom right;
    border: 1px solid rgba(0,0,0,0.1);
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: all 0.3s ease-out;
    pointer-events: none;
}

.bubble-content.active {
    display: block !important;
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

/* Cải thiện animation */
@keyframes bubbleExpand {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes bubbleShrink {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
}

/* Mobile responsive for chat bubble */
@media (max-width: 768px) {
    .bubble-content {
        width: 250px;
        right: -10px;
        bottom: 120px;
    }
    
    .chat-bubble {
        bottom: 120px;
        right: 20px;
    }
}
