/* 
  Transitpods - Premium AI Aesthetic Styles 
*/

:root {
  /* Colors */
  --bg-color: #E6F4FF;
  /* Soft Light Blue */
  --bg-surface: #ffffff;
  /* White for cards */
  --text-primary: #1a1a1a;
  /* Dark text */
  --text-secondary: #5a5d7a;
  /* Muted Blue-Grey */

  --accent-blue: #0076ff;
  /* Deeper blue for contrast */
  --accent-purple: #6200ee;
  --accent-teal: #00897b;

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 118, 255, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.4);

  /* New Dark Theme for Blocks */
  --bg-block: #1a2b45; /* Darkish Blue */
  --text-white: #ffffff;
  --text-muted-light: rgba(255, 255, 255, 0.7);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.15;
  animation: float 15s ease-in-out infinite alternate;
}

.glow-orb.top-left {
  width: 400px;
  height: 400px;
  background: var(--accent-purple);
  top: -100px;
  left: -100px;
}

.glow-orb.bottom-right {
  width: 500px;
  height: 500px;
  background: var(--accent-blue);
  bottom: -200px;
  right: -100px;
  animation-delay: -5s;
}

.glow-orb.center-right {
  width: 300px;
  height: 300px;
  background: var(--accent-teal);
  top: 40%;
  right: -50px;
  opacity: 0.1;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--glass-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  opacity: 0.2;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  100% {
    transform: translateY(30px) translateX(20px);
  }
}

/* Typography Utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary,
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.btn-primary {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.btn-primary-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-primary::before,
.btn-primary-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before,
.btn-primary-sm:hover::before {
  opacity: 1;
}

.btn-primary:hover,
.btn-primary-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 1.1rem;
  color: var(--text-primary);
  text-decoration: none;
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--glass-highlight);
  border-color: var(--accent-blue);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0 20px 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, rgba(230, 244, 255, 0.9) 0%, rgba(230, 244, 255, 0) 100%);
}

.top-info-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 15px 30px;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.navbar.scrolled .top-info-bar {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border-bottom: none;
  overflow: hidden;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item i {
  color: #ffcc00;
  /* Warm accent matching the user's reference logo/theme */
  width: 20px;
  height: 20px;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.70rem;
  color: var(--text-primary);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-val {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

.address-item {
  max-width: 400px;
}

.address-item .info-val {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: help;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 118, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 2px;
}

.logo span:not(.logo-icon) {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--accent-blue);
  letter-spacing: 4px;
}

.logo-icon i {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a:not(.btn-primary-sm) {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary-sm):hover {
  color: var(--accent-blue);
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 30px 50px 30px;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
  color: var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: var(--font-serif);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.image-glass-frame {
  width: 100%;
  max-width: 500px;
  height: 600px;
  border-radius: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.hero-carousel-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-carousel-img.active {
  opacity: 1;
}

.image-glass-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-color), transparent 50%);
}

.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 118, 255, 0.1);
  z-index: 2;
  animation: float 6s ease-in-out infinite alternate;
  color: var(--text-primary);
}

.floating-stat i {
  color: var(--accent-blue);
}

.floating-stat span {
  font-weight: 600;
  font-size: 0.9rem;
}

.stat-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.stat-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: -3s;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 30px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 3rem;
  font-family: var(--font-serif);
  margin-bottom: 20px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Glass Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.glass-card {
  background: var(--bg-block);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  color: var(--text-white);
}

.glass-card>* {
  transform: translateZ(30px);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  background: #1e3a5f; /* Slightly lighter on hover */
  border-color: var(--accent-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glass-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 210, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--accent-blue);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: var(--font-serif);
  color: var(--text-white);
}

.feature-card p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
}

/* Booking Section */
.booking-section {
  padding-bottom: 150px;
}

.booking-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-block);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px;
  gap: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  color: var(--text-white);
}

.booking-container::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1), transparent 70%);
  border-radius: 50%;
}

.booking-text {
  flex: 1;
}

.booking-text h2 {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  margin-bottom: 20px;
}

.booking-text p {
  color: var(--text-muted-light);
  font-size: 1.1rem;
}

.booking-actions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-dates {
  display: flex;
  gap: 15px;
  width: 100%;
}

.date-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.date-input-group label {
  font-size: 0.85rem;
  color: #ffffff !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 5px;
  opacity: 0.9;
}

.glass-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 15px;
  color: #ffffff !important;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.glass-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.glass-input:focus {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.glass-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.glass-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.glass-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.glass-btn i {
  width: 40px;
  height: 40px;
  color: #ffffff !important;
  transition: transform 0.3s ease;
}

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

.btn-text strong {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff !important;
}

.btn-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8) !important;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover i {
  color: #25D366;
  transform: scale(1.1);
}

.btn-email:hover {
  background: rgba(0, 210, 255, 0.1);
  border-color: rgba(0, 210, 255, 0.3);
}

.btn-email:hover i {
  color: var(--accent-blue);
  transform: scale(1.1);
}

/* Footer Section */
.main-footer {
  background-color: #ffffff;
  color: var(--text-primary);
  padding: 60px 0 0 0;
  font-family: var(--font-sans);
  border-top: 1px solid var(--glass-border);
}

.location-map-section iframe {
  display: block;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: inherit;
}

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

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent-blue);
}

.contact-col p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--accent-blue);
  width: 20px;
  height: 20px;
}

.footer-contact-item a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--accent-blue);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon i {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--accent-blue);
  color: #fff;
  transform: translateY(-3px);
}

.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  background-color: var(--bg-block);
  color: var(--text-white);
  text-align: center;
  padding: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Smart Rooms */
.rooms-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.room-card {
  display: flex;
  padding: 0;
  min-height: 400px;
  align-items: center;
  gap: 40px;
}

.room-card:nth-child(even) {
  flex-direction: row-reverse;
}

.room-image {
  flex: 1;
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

#room-img-1 {
  background-image: url('images/12bed_mixed.jpg');
}

#room-img-2 {
  background-image: url('images/private_room.png');
}


.room-info {
  flex: 1;
  padding: 40px;
  background: var(--bg-block);
  border-radius: 24px;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.room-info h3 {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  margin-bottom: 20px;
  color: var(--accent-blue);
}

.room-info p {
  color: var(--text-muted-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}

.room-features i {
  color: var(--accent-teal);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(230, 244, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  color: var(--text-primary);
  transition: transform 0.3s ease;
}

.mobile-menu-close.hover {
  transform: rotate(90deg);
  color: var(--accent-blue);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-nav-links a {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--accent-blue);
}

/* Custom Cursor */
body {
  cursor: none;
}

a,
button,
.mobile-menu-btn,
.mobile-menu-close,
.room-card,
.feature-card,
.testimonial-card {
  cursor: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-blue);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 9998;
  pointer-events: none;
  transition: width 0.2s, height 0.2s, background-color 0.2s, opacity 0.3s ease;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  color: var(--accent-purple);
  margin-bottom: 20px;
  opacity: 0.5;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
  flex: 1;
  color: var(--text-muted-light);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.reviewer-info strong {
  display: block;
  font-size: 1rem;
}

.reviewer-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Hide cursor on mobile or touch devices */
@media (hover: none) and (pointer: coarse) {

  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  body,
  a,
  button,
  .mobile-menu-btn,
  .mobile-menu-close,
  .room-card,
  .feature-card,
  .testimonial-card,
  .aura-button,
  .aura-close,
  #aura-send {
    cursor: auto;
  }
}

/* Aura Chatbot */
.aura-chatbot {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.aura-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aura-button i {
  width: 28px;
  height: 28px;
}

.aura-button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 210, 255, 0.5);
}

.aura-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}

.aura-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.aura-header {
  padding: 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(230, 244, 255, 0.5);
}

.aura-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.aura-title strong {
  display: block;
  font-size: 1.1rem;
}

.aura-title span {
  font-size: 0.8rem;
  color: var(--accent-teal);
}

.aura-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: none;
  transition: color 0.3s ease;
}

.aura-close:hover {
  color: var(--text-primary);
}

.aura-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.aura-messages::-webkit-scrollbar {
  width: 6px;
}

.aura-messages::-webkit-scrollbar-thumb {
  background: var(--glass-border);
  border-radius: 10px;
}

.message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 15px;
  font-size: 0.95rem;
  line-height: 1.4;
  animation: messageSlideIn 0.3s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

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

.message.received {
  align-self: flex-start;
  background: rgba(0, 118, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-bottom-left-radius: 5px;
}

.message.sent {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  border-bottom-right-radius: 5px;
}

.aura-input-area {
  padding: 15px 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 10px;
  background: rgba(230, 244, 255, 0.3);
}

.aura-input-area input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 10px 15px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
}

.aura-input-area input:focus {
  border-color: var(--accent-blue);
}

.aura-input-area button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--accent-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: transform 0.2s ease;
}

.aura-input-area button:hover {
  transform: scale(1.1);
}

.aura-input-area button i {
  width: 18px;
  height: 18px;
}

/* Typing Indicator & Quick Actions */
.typing-indicator {
  padding: 10px 15px;
  display: flex;
  gap: 5px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  margin-left: 20px;
}

.typing-indicator.active {
  opacity: 1;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--text-secondary);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typingBounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.aura-quick-actions {
  display: flex;
  gap: 8px;
  padding: 0 20px 15px;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
}

.aura-quick-actions::-webkit-scrollbar {
  display: none;
}

.quick-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  font-family: inherit;
  cursor: none;
  transition: all 0.2s ease;
}

.quick-chip:hover {
  background: rgba(0, 210, 255, 0.1);
  color: var(--text-primary);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

/* Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-item {
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: none;
  border: 1px solid var(--glass-border);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(230, 244, 255, 0.9), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-primary);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 250px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 150px;
  }

  .hero-cta {
    justify-content: center;
  }

  .floating-stat {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .booking-container {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 3rem;
  }

  .room-card,
  .room-card:nth-child(even) {
    flex-direction: column;
  }

  .room-image {
    width: 100%;
    min-height: 250px;
  }

  .room-info {
    padding: 30px 20px;
  }

  .aura-chatbot {
    bottom: 20px;
    right: 20px;
  }

  .aura-window {
    width: 300px;
    height: 400px;
    bottom: 70px;
    right: 0;
  }
}

/* PMS Action Bar */
.pms-action-bar {
  width: 100%;
  background: var(--bg-color);
  /* The dark background */
  font-family: var(--font-sans);
}

.pms-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background-color: var(--bg-block);
  /* Dark blue background */
  padding: 15px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.pms-nav-item {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.pms-nav-item:hover,
.pms-nav-item.active {
  color: #00d2ff; /* Brighter blue for better contrast */
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.pms-nav-item i {
  width: 18px;
  height: 18px;
  color: inherit;
}

/* Dropdowns */
.pms-dropdown-container {
  position: relative;
}

.pms-dropdown-menu {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 20px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.pms-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent white transparent;
}

.pms-dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.pms-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.pms-input:focus {
  border-color: var(--accent-blue);
}

.pms-forgot {
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
  text-align: right;
}

.pms-forgot:hover {
  text-decoration: underline;
  color: #111;
}

.pms-btn-solid {
  background: var(--accent-blue);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.pms-btn-solid:hover {
  background: #e5a800;
}

/* Currency Dropdown */
.currency-menu {
  min-width: 320px;
}

.pms-currency-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.pms-scrollable {
  max-height: 200px;
  overflow-y: auto;
  border-bottom: none;
}

.pms-currency-label {
  font-size: 0.7rem;
  color: #888;
  font-weight: 600;
  margin-bottom: 8px;
}

.pms-currency-item {
  font-size: 0.85rem;
  color: #444;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.pms-currency-item span {
  color: var(--accent-blue);
  font-weight: 600;
}

.pms-currency-item:hover,
.pms-currency-item.active {
  background: #f9f9f9;
}

/* Bottom Search Bar */
.pms-search-bar {
  background: var(--bg-block);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pms-search-dates {
  display: flex;
  gap: 20px;
}

.pms-date-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-white);
  margin-bottom: 5px;
  font-weight: 600;
}

.pms-date-input {
  display: flex;
  align-items: center;
  background: white;
  padding: 8px 12px;
  border-radius: 4px;
  gap: 10px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pms-date-input input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: #333;
  background: transparent;
}

.pms-date-input i {
  color: #666;
  width: 16px;
  height: 16px;
}

.pms-check-btn {
  background: var(--accent-blue);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pms-check-btn:hover {
  background: #0056b3;
  box-shadow: 0 4px 15px rgba(0, 118, 255, 0.3);
}

button.pms-promo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.pms-promo:hover {
  text-decoration: underline;
}

.promo-menu {
  min-width: 300px !important;
}

.pms-promo-input-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

.pms-promo-input-group .pms-input {
  flex: 1;
}

.pms-promo-input-group .pms-btn-solid {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .pms-nav {
    gap: 15px;
    padding: 15px;
  }

  .pms-search-bar {
    flex-direction: column;
  }

  .results-layout {
    grid-template-columns: 1fr;
  }

  .room-card-horizontal {
    flex-direction: column;
  }

  .room-card-img {
    width: 100%;
    height: 200px;
  }
}

/* Booking Results Section */
#booking-results-section {
  padding: 80px 30px;
  background: var(--bg-color);
  transition: all 0.5s ease;
  min-height: 80vh;
}

.booking-results-hidden {
  display: none !important;
  opacity: 0;
}

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

.results-filter-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  color: #333;
  backdrop-filter: blur(10px);
}

.filter-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  align-items: flex-start;
}

/* Horizontal Room Card */
.room-card-horizontal {
  display: flex;
  background: var(--bg-block);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  color: var(--text-white);
}

.room-card-horizontal:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  background: #1e3a5f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.room-card-img {
  width: 300px;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.room-card-content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.room-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.room-card-header h3 {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  color: var(--text-white);
}

.special-deal-badge {
  background: #e74c3c;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.room-capacity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.room-capacity i {
  width: 16px;
  height: 16px;
}

.room-price-area {
  margin-top: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.room-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
}

.room-link-group {
  display: flex;
  gap: 15px;
}

.room-link {
  color: #fbbc05;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.room-link:hover {
  text-decoration: underline;
}

/* Sidebar Summary */
.booking-summary-sidebar {
  position: sticky;
  top: 120px;
}

.summary-card {
  padding: 25px;
}

.summary-card h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.empty-summary {
  text-align: center;
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.85); /* Much brighter */
}

.empty-summary i {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  opacity: 0.8; /* Higher opacity */
  color: var(--accent-blue);
}

.w-100 {
  width: 100%;
}

/* Booking Summary Selection UI */
.summary-list {
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 5px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  animation: fadeIn 0.3s ease;
}

.summary-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-room-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95); /* High contrast for dark background */
  line-height: 1.3;
}

.summary-room-price {
  font-size: 0.8rem;
  color: var(--accent-blue);
  font-weight: 700;
}

.remove-room-btn {
  background: rgba(231, 76, 60, 0.1);
  border: none;
  color: #e74c3c;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.remove-room-btn:hover {
  background: #e74c3c;
  color: white;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 10px;
  border-top: 1px dashed var(--glass-border);
  margin-bottom: 25px;
}

.summary-total span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.total-value {
  color: var(--accent-blue);
  font-size: 1.2rem;
  font-weight: 800;
}

.btn-primary-sm.added {
  background: #27ae60 !important;
  border-color: #2ecc71 !important;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Status Badges */
.special-deal-badge {
  background: #fbbc05;
  color: black;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sold-out-badge {
  background: #6b7280;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Sold Out State */
.room-card-horizontal.is-sold-out {
  opacity: 0.8;
  filter: grayscale(0.5);
}

.room-card-horizontal.is-sold-out .room-price-area {
  text-decoration: line-through;
  opacity: 0.5;
}

.sold-out-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  backdrop-filter: blur(2px);
  z-index: 1;
}

.add-to-summary:disabled {
  background: #374151 !important;
  cursor: not-allowed;
  opacity: 0.7;
  border-color: #4b5563 !important;
}