/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary-color: #d4af37;
  /* Luxury Gold */
  --primary-dark: #b5952f;
  --secondary-color: #1a1a1a;
  /* Dark Navy/Charcoal */
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f9f9f9;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s ease;
  --border-radius: 8px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* --- Reset & Global Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

/* --- Typography --- */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

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

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

/* --- Header / Navbar --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  height: 60px;
  position: relative;
  width: 90px;
}

.logo img {
  height: 95px;
  position: absolute;
  top: -10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
  border-radius: 8px;
  z-index: 100;
}

.logo a:hover img {
  transform: scale(1.08) translateY(2px);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
}

header.scrolled .logo img {
  height: 60px;
  top: 0;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.05));
}

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

.nav-links a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-call-btn, .nav-book-btn {
  padding: 10px 25px !important;
  border-radius: 30px !important;
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.nav-call-btn, .nav-book-btn:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

header:not(.scrolled) .nav-links a {
  color: #ffffff;
}

header.scrolled .nav-links a {
  color: var(--secondary-color);
}

header.scrolled .nav-links a:hover:not(.nav-call-btn, .nav-book-btn),
header.scrolled .nav-links a.active:not(.nav-call-btn, .nav-book-btn),
header:not(.scrolled) .nav-links a:hover:not(.nav-call-btn, .nav-book-btn),
header:not(.scrolled) .nav-links a.active:not(.nav-call-btn, .nav-book-btn) {
  color: var(--primary-color);
}

/* Force white text on button at all times */
header.scrolled .nav-links a.nav-call-btn, .nav-book-btn,
header:not(.scrolled) .nav-links a.nav-call-btn, .nav-book-btn {
  color: #fff !important;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

header:not(.scrolled) .nav-toggle {
  color: #ffffff;
}

header.scrolled .nav-toggle {
  color: var(--secondary-color);
}

/* --- Hero Section --- */
.hero {
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-text {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #eee;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn-round {
  border-radius: 30px !important;
  padding: 15px 35px !important;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

/* --- Page Header --- */
.page-header {
  padding: 180px 0 100px;
  background-color: var(--secondary-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: #fff;
  font-size: 3rem;
}

/* --- About Section --- */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-color);
  font-weight: 500;
}

.features-list i {
  color: var(--primary-color);
}

/* --- Rooms Section --- */
.rooms-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.room-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.room-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-img img {
  transform: scale(1.1);
}

.room-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.room-content {
  padding: 25px;
}

.room-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.room-desc {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.room-amenities {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  color: var(--text-light);
}

.room-amenities span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.room-amenities i {
  color: var(--primary-color);
}

/* --- Room Details --- */
.room-details-section {
  padding: 80px 0;
}

.room-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.room-gallery {
  margin-bottom: 30px;
}

.main-image {
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 15px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.thumbnail-images img {
  height: 100px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}

.thumbnail-images img.active,
.thumbnail-images img:hover {
  opacity: 1;
}

.room-info h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.price-tag {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.price-tag span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.booking-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.booking-card h3 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* --- Services Section --- */
.services-section {
  padding: 80px 0;
}

.service-card {
  text-align: center;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.custom-icon-list {
  text-align: left;
  margin-top: 25px;
  color: var(--text-light);
  list-style: none;
  padding: 0;
}

.custom-icon-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.custom-icon-list i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* --- Gallery Section --- */
.gallery-section {
  padding: 80px 0;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 30px;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

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

/* --- Contact Section --- */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-wrapper {
  background-color: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.contact-info {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.info-item h4 {
  color: #fff;
  margin-bottom: 5px;
}

.info-item p {
  color: #ccc;
}

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

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

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

.full-width-map {
  width: 100%;
  height: 400px;
  line-height: 0;
}

.full-width-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Footer --- */
footer {
  background-color: #111;
  color: #fff;
  padding: 80px 0 20px;
}

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

.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.footer-about p {
  color: #aaa;
}

.footer-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links a {
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  font-size: 0.8rem;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #aaa;
}

.footer-contact i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #888;
  font-size: 0.9rem;
}

/* --- Highlights Section --- */
.highlights-section {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: #fff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.highlight-item {
  padding: 20px;
}

.highlight-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.highlight-item h3 {
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.highlight-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  top: -10px;
  left: 30px;
}

.rating {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.7;
}

.guest-name {
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* --- Horizontal Room Cards --- */
.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.room-card-horizontal {
  display: grid;
  grid-template-columns: 45% 55%;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.room-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.room-card-horizontal .room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-card-horizontal .room-content {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.room-badge {
  position: absolute;
  top: 25px;
  left: 40px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-card-horizontal h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.room-card-horizontal .room-desc {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.7;
}

.room-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid #f0f0f0;
}

.room-footer .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.room-footer .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.btn-book {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-book:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateX(5px);
}

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

.facility-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.facility-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.facility-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.facility-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- About Intro Section --- */
.intro-title {
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-image .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  padding-right: 20px;
  padding-bottom: 20px;
}

.about-intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.award-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.image-overlay-box {
  position: absolute;
  bottom: 0px;
  left: -30px;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  color: #fff;
  max-width: 300px;
}

.image-overlay-box i {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 10px;
}

/* --- Alternating Facilities Section --- */
.alt-facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.alt-facility-row:last-child {
  margin-bottom: 0;
}

.alt-facility-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.alt-facility-text h3 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.alt-facility-text p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-intro-text .section-subtitle,
.alt-facility-text .section-subtitle,
.exp-content .section-subtitle {
  text-align: left;
  margin-bottom: 10px;
}

/* --- Location Advantage (Timeline UI) --- */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 2px;
  background-color: rgba(212, 175, 55, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 120px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: 20px;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
  z-index: 2;
}

.timeline-content {
  background-color: #fcfcfc;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -10px;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #fcfcfc transparent transparent;
}

.timeline-content h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.timeline-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--secondary-color);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.timeline-list li > div {
  display: flex;
  align-items: center;
}

.timeline-list li i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.timeline-list li .distance {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
  background-color: rgba(0,0,0,0.03);
  padding: 5px 12px;
  border-radius: 20px;
}

/* --- Experience Section --- */
.exp-title {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.experience-section {
  background-color: #1a1a1a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.experience-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}

.exp-img-wrapper {
  position: relative;
}

.exp-img-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.stat-item h3 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Client Testimonials Horizontal --- */
.client-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.client-testi-card {
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.client-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-details h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.client-details span {
  color: var(--primary-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .intro-title { font-size: 2.4rem !important; }
  .exp-title { font-size: 2.2rem !important; }
  .cta-banner h2 { font-size: 2rem !important; }

  .room-card-horizontal {
    grid-template-columns: 1fr;
  }

  .room-card-horizontal .room-img {
    height: 300px;
  }

  .room-badge {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    margin-bottom: 20px;
  }

  .about-intro-grid,
  .experience-grid,
  .client-testi-grid,
  .alt-facility-row,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .alt-facility-row.reverse .alt-facility-img {
    order: -1;
  }

  .image-overlay-box {
    left: 0;
    bottom: -20px;
    max-width: calc(100% - 40px);
  }

  .timeline-container::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
  
  .timeline-icon {
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: 10px;
  }
  
  .timeline-content {
    padding: 25px;
  }

  .timeline-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-grid,
  .room-details-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 75px;
    top: -5px;
  }

  header.scrolled .logo img {
    height: 50px;
    top: 5px;
  }

  .navbar {
    padding: 15px 20px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    padding: 5px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
    gap: 0;
    pointer-events: none;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: auto;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #f9f9f9;
    color: var(--secondary-color) !important;
  }
  
  .nav-links li:last-child a {
    border-bottom: none;
  }
  
  .nav-links a.nav-call-btn, .nav-book-btn {
    width: fit-content;
    margin: 15px auto;
    color: #fff !important;
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-title {
    font-size: 2rem !important;
  }
  
  .exp-title {
    font-size: 1.8rem !important;
  }
  
  .cta-banner h2 {
    font-size: 1.6rem !important;
  }

  .page-header {
    padding: 120px 0 60px;
  }
}

@media (max-width: 576px) {
  .hero-btns {
    flex-direction: column;
  }

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

  .thumbnail-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Floating Enquiry Button & Modal */
.floating-enquiry-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    letter-spacing: 1px;
}

.floating-enquiry-btn:hover {
    background-color: #d19f3a;
}

.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enquiry-modal.show {
    display: flex;
    opacity: 1;
}

.enquiry-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.enquiry-modal.show .enquiry-modal-content {
    transform: scale(1);
}

.enquiry-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s;
}

.enquiry-modal-close:hover {
    color: var(--primary-color);
}

/* Modal Form Specifics */
#floatingContactForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#floatingContactForm .form-group {
    margin-bottom: 15px;
}

#floatingContactForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

#floatingContactForm .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
}

#floatingContactForm .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

@media (max-width: 768px) {
    #floatingContactForm .form-row {
        grid-template-columns: 1fr;
    }
}


/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    color: #fff;
}
