:root {
  --primary: #d4af37; /* Metallic Gold */
  --primary-hover: #f1c953;
  --gold-gradient: linear-gradient(135deg, #ECC46A, #B48430, #F4D383, #AD7C26);
  --secondary: #f8f9fa; /* Now used as light contrast */
  --bg-cream: #090B0E; /* Deep Obsidian Base */
  --dark: #000000;
  --light: #11151A; /* Dark alternative for sections */
  --white: #ffffff;
  --text: #A0ABBA; /* Sleek slate gray text */
  --text-muted: #64748b;
  --glass-bg: rgba(9, 11, 14, 0.85); /* Dark Glass */
  --hero-title-color: #ffffff;
  --hero-subtitle-color: #d4af37;
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for fixed header */
}

/* Background Ambient Orbs */
body::before, body::after {
  content: '';
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: float 20s infinite alternate ease-in-out;
  pointer-events: none;
}

body::before {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -100px;
  left: -200px;
}

body::after {
  width: 500px;
  height: 500px;
  background: var(--light);
  bottom: -100px;
  right: -100px;
  animation-delay: -5s;
  box-shadow: 0 0 100px #25d366; /* Gives a subtle cool/green accent opposite to gold */
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 50px) scale(1.1); }
  100% { transform: translate(-50px, 100px) scale(0.9); }
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-weight: 800; /* DETAILED SEO BOLD TITLES */
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.bg-light {
  background-color: var(--light);
}

.section-padding {
  padding: 120px 0;
}

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

.section-header h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: -1px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-gold {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-small {
  font-size: 0.95rem;
  padding: 10px 20px;
  display: block;
  margin: 0 auto;
}

.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
  color: #000;
}

.btn-full {
  width: 100%;
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

/* Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(25px);
  padding: 15px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled h2 {
  color: var(--white);
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

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

.logo h2 {
  font-size: 1.8rem;
  color: var(--white);
  transition: color 0.3s ease;
}

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

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar.scrolled .menu-toggle {
  color: var(--secondary);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  padding: 40px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
}

.mobile-nav-links {
  list-style: none;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary);
}

/* Hero Section & Slider */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s linear;
  transform: scale(1.05);
  display: block;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 100 !important;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.hero-title {
  color: var(--hero-title-color);
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -2px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
  text-shadow: 0px 10px 40px rgba(0,0,0,0.6);
  width: 100%;
  text-align: center;
}

.hero-subtitle {
  color: var(--hero-subtitle-color);
  font-size: clamp(0.7rem, 1.5vw, 0.95rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 0px 2px 10px rgba(0,0,0,0.5);
  text-align: center;
  display: block;
}

.hero-content .btn {
  margin: 10px;
  padding: 16px 40px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Booking Section */
.booking-section {
  position: relative;
  margin-top: -100px;
  z-index: 10;
  padding: 0 20px;
}

.booking-container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: rgba(20, 24, 30, 0.7) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 40px;
}

.booking-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: end;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 500;
}

.input-group label i {
  color: var(--primary);
  margin-right: 5px;
}

.input-group input, 
.input-group select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group input:focus, 
.input-group select:focus {
  outline: none;
  background-color: rgba(0, 0, 0, 0.6);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), inset 0 0 0 1px var(--primary);
}

.input-group input[type="date"] {
  color-scheme: dark;
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.8) sepia(1) hue-rotate(5deg) saturate(300%);
  opacity: 0.8;
  transition: 0.2s;
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.guest-group {
  display: flex;
  gap: 10px;
}

.half {
  flex: 1;
}

/* Facilities Section */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.facility-card {
  position: relative;
  text-align: center;
  background-color: #11151A;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255,255,255,0.03);
}
.facility-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.facility-card:hover img {
  transform: scale(1.1);
}
.facility-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0; background: var(--gold-gradient); transition: height 0.4s; z-index: 10;
}
.facility-card:hover::after { height: 4px; }

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border-color: rgba(212, 175, 55, 0.3);
}

.facility-content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
}

.facility-card h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.facility-card p {
  color: var(--text);
  font-size: 1.05rem;
  opacity: 0.9;
  font-weight: 300;
}

.facility-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

/* Location Section */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.location-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #11151A;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s, box-shadow 0.4s;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 320px;
  object-fit: cover;
  border: none;
}
.location-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0; background: var(--gold-gradient); transition: height 0.4s; z-index: 10;
}
.location-item::before {
  content: ''; position: absolute; top: 15px; left: 15px; right: 15px; bottom: 15px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; z-index: 3; pointer-events: none; transition: 0.4s;
}
.location-item:hover::after { height: 6px; }
.location-item:hover::before { border-color: rgba(212,175,55,0.8); transform: scale(0.96); }

.location-item .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
  z-index: 1;
  transition: background 0.3s;
}

.location-item:hover .card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.5));
}

.location-item:hover {
  transform: translateY(-5px);
}

.loc-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 25px;
}

.loc-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.loc-details h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
}

.loc-details span {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Map Section */
.map-section {
  display: flex;
  filter: invert(90%) hue-rotate(180deg) contrast(100%); /* Sleek dark google map */
}

/* Floating WhatsApp */
.whatsapp-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.floating-whatsapp {
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  background-color: white;
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-float-container:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Section */
.footer {
  background-color: #050505;
  color: var(--text);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.brand-col h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.brand-col p {
  color: var(--text);
  margin-bottom: 30px;
  max-width: 350px;
  font-size: 1.05rem;
}

.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: background-color 0.3s, color 0.3s;
}

.socials a:hover {
  background-color: var(--primary);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold-gradient);
}

.links-col ul {
  list-style: none;
}

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

.links-col ul a {
  color: #94a3b8;
  transition: color 0.3s, padding-left 0.3s;
}

.links-col ul a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-col p {
  color: #94a3b8;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-col p i {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #64748b;
  font-size: 0.9rem;
}

/* Animations & Form Details */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-up {
  animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

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

.loader {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 3px solid white;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#booking-msg {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Medias Queries */
@media (max-width: 1100px) {
  .booking-form {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
  }
  .input-group:nth-child(1), .input-group:nth-child(2), .input-group:nth-child(3) {
    grid-column: span 1;
  }
  .input-group:nth-child(4), .input-group:nth-child(5), .guest-group {
    grid-column: span 1;
  }
  .submit-group {
    grid-column: span 3;
    margin-top: 10px;
  }
  .booking-section {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 3rem;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  .submit-group {
    grid-column: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.room-card {
    background: #11151A; border-radius: 16px; overflow: hidden;
    position: relative; border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.room-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0; background: var(--gold-gradient); transition: height 0.4s; z-index: 10;
}
.room-card:hover::after { height: 4px; }

.room-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); border-color: rgba(212,175,55,0.3); }
.room-img { height: 280px; background-size: cover; background-position: center; transition: 0.8s ease; }
.room-card:hover .room-img { transform: scale(1.08); }
.room-img-wrapper { overflow: hidden; height: 280px; }
.room-info { padding: 40px 35px; text-align: left; }
.room-info h3 { margin-bottom: 12px; font-size: 1.6rem; letter-spacing: 0.5px; }
.room-info p { color: var(--text); font-size: 1.05rem; line-height: 1.6; }
.btn-outline-dark { border: 1px solid rgba(212,175,55,0.4); color: var(--primary); padding: 12px 30px; margin-top: 25px; display: inline-block; transition: 0.4s; border-radius: 50px; font-weight: 500; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;}
.btn-outline-dark:hover { background: var(--primary); color: #000; box-shadow: 0 10px 25px rgba(212,175,55,0.3); transform: translateY(-3px); }

.room-ideal-tag { 
    display: inline-flex; align-items: center; gap: 8px; 
    font-size: 0.8rem; font-weight: 600; color: var(--primary); 
    background: rgba(212, 175, 55, 0.08); padding: 6px 12px; 
    border-radius: 8px; margin-bottom: 15px; border: 1px solid rgba(212, 175, 55, 0.1); 
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* Modals */
.room-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: 0.4s;
}
.room-modal.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: white; width: 90%; max-width: 800px;
    border-radius: 12px; position: relative; overflow: hidden;
    transform: translateY(50px); transition: 0.4s;
}
.room-modal.active .modal-content { transform: translateY(0); }
.close-modal {
    position: absolute; top: 15px; right: 20px; font-size: 1.5rem;
    color: white; cursor: pointer; z-index: 10;
    background: rgba(0,0,0,0.5); width: 35px; height: 35px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.modal-body { display: flex; flex-direction: column; }
.room-gallery { width: 100%; display: flex; flex-direction: column; gap: 8px; padding: 20px 20px 0; }
.main-gallery-img { width: 100%; height: 350px; object-fit: cover; border-radius: 8px; transition: 0.3s; }
.thumb-track { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.thumb-track::-webkit-scrollbar { height: 6px; }
.thumb-track::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
.thumb { flex: 0 0 100px; height: 75px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; opacity: 0.6; transition: 0.3s; }
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--primary); }
.modal-text { padding: 20px 30px 30px; }
.room-desc { color: #64748b; font-size: 1rem; margin-top: 10px; line-height: 1.6; }
.room-facilities-list {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
    margin: 20px 0 30px;
}
.room-facilities-list li { display: flex; align-items: center; font-size: 1.05rem; }
.room-facilities-list i { color: var(--primary); margin-right: 15px; width: 20px; text-align: center; }

/* Summary */
.booking-summary-wrapper { text-align: center; margin-bottom: 20px; margin-top: -5px; }
#booking-summary-text { font-size: 1.1rem; color: var(--secondary); }

/* About Us Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content { display: flex; flex-direction: column; gap: 30px; }
.about-card { background: #11151A; padding: 35px; border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.3); transition: transform 0.4s; border: 1px solid rgba(255,255,255,0.03); border-left: 4px solid transparent; }
.about-card:hover { transform: translateX(10px); border-left-color: var(--primary); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.about-card h3 { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; font-size: 1.4rem; font-family: 'Outfit', sans-serif;}
.about-card p { color: var(--text); font-size: 1.05rem; }
.chairman-card { background: #0A0A0A; color: white; border-radius: 16px; padding: 40px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); margin-top: 20px; position: relative; border: 1px solid rgba(212,175,55,0.2);}
.chairman-card h3 { color: white; display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.5rem; }
.chairman-card blockquote { font-style: italic; font-size: 1.15rem; color: rgba(255,255,255,0.8); border-left: 4px solid var(--primary); padding-left: 20px; margin: 0; line-height: 1.8; font-family: 'Outfit', sans-serif;}

/* Elegant About Image Collage */
.about-image-collage { position: relative; min-height: 550px; width: 100%; display: flex; align-items: center; justify-content: center; }
.collage-pic { position: absolute; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.05); }
.collage-pic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.collage-pic:hover img { transform: scale(1.08); }
.collage-back { width: 70%; height: 420px; top: 10px; right: 0; z-index: 1; filter: brightness(0.8);}
.collage-front { width: 65%; height: 380px; bottom: 10px; left: 0; z-index: 2; box-shadow: 0 30px 70px rgba(0,0,0,0.6); }
.collage-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 160px; height: 160px; background: rgba(10,10,10,0.7); backdrop-filter: blur(15px); border-radius: 50%; z-index: 3; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid rgba(212,175,55,0.4); box-shadow: 0 15px 40px rgba(0,0,0,0.5); color: var(--primary); text-align: center; }
.badge-num { font-size: 2.2rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1.1; }
.badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-top: 5px; }


/* Careers Section */
.careers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.job-card { background: white; padding: 35px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); display: flex; flex-direction: column; height: 100%; transition: 0.3s; border-top: 4px solid transparent;}
.job-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-top-color: var(--primary); }
.job-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--secondary); font-family: 'Outfit', sans-serif;}
.job-card p { color: var(--text-muted); margin-bottom: 25px; flex-grow: 1; font-size: 0.95rem; }
.job-actions { padding-top: 20px; border-top: 1px solid #f1f5f9; margin-top: auto;}
.job-actions .btn { width: 100%; display: flex; justify-content: center; align-items: center; gap: 10px; font-weight: 500; font-size: 1rem; border-width: 2px; border-radius: 6px; padding: 12px 20px;}
.job-actions .btn:hover { background-color: #25D366; color: white !important; }

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image-collage { order: -1; min-height: 450px; }
    .collage-badge { width: 120px; height: 120px; }
    .badge-num { font-size: 1.8rem; }
    .badge-text { font-size: 0.65rem; }
}
