/* Maseri Cabins - Multi-page Website Styles */

:root {
  --primary: #545454;
  --accent: #927A56;
  --bg: #F5F2EE;
  --muted: #9D8B7B;
  --text: #222222;
  --white: #ffffff;
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  display: block;
}

.site-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.main-nav {
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  position: absolute;
  right: 2rem;
  top: 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero h1 {
  color: #927A56;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  color: var(--text);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  max-height: 500px;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .hero-image {
    order: -1;
  }
}

/* About Section */
.about-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  text-align: center;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-text p {
    font-size: 1rem;
  }
}

/* Home Rooms Section */
.home-rooms-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.home-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.home-room-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

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

.home-room-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff 0%, #fdfbf7 100%);
}

.home-room-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-beds {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.room-amenities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.room-amenities li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: var(--text);
}

.room-amenities li:last-child {
  border-bottom: none;
}

.room-amenities li:before {
  content: "✓ ";
  color: var(--accent);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Room Slideshow */
.room-slideshow {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.room-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

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

.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.room-slideshow:hover .room-slide-btn,
.room-slide-btn:focus,
.room-slide-btn:focus-visible {
  opacity: 1;
}

.room-slide-btn:hover,
.room-slide-btn:focus-visible {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-50%) scale(1.1);
}

.room-slide-btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.room-slide-btn.prev {
  left: 10px;
}

.room-slide-btn.next {
  right: 10px;
}

.room-slide-btn svg {
  color: var(--primary);
}

.room-slide-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.room-slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 0;
}

.room-slide-dot:hover,
.room-slide-dot:focus-visible {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.15);
}

.room-slide-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.room-slide-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .home-rooms-section {
    padding: 3rem 0;
  }
  
  .home-rooms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .room-slideshow {
    height: 220px;
  }
  
  .room-slide-btn {
    opacity: 1;
    width: 35px;
    height: 35px;
  }
}

/* Amenities Section */
.amenities-section {
  background: var(--white);
  padding: 4rem 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.amenity-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1);
}

.amenity-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  stroke-width: 2;
}

.amenity-card h3 {
  color: var(--primary);
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.amenity-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .amenities-section {
    padding: 3rem 0;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn.primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transition: transform 0.2s ease;
}

.btn.primary:hover,
.btn.primary:focus {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn.btn-white-fade {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  transition: transform 0.2s ease;
}

.btn.btn-white-fade:hover,
.btn.btn-white-fade:focus {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn.outline {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transition: transform 0.2s ease;
}

.btn.outline:hover,
.btn.outline:focus {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn.accent {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transition: transform 0.2s ease;
}

.btn.accent:hover,
.btn.accent:focus {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn.book-now {
  background-color: #927A56;
  color: var(--white);
  border-color: #927A56;
  transition: transform 0.2s ease;
}

.btn.book-now:hover,
.btn.book-now:focus {
  background-color: var(--white);
  color: #222222;
  border-color: #927A56;
  transform: translateY(-3px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
  }
}

/* Sections */
section {
  padding: 4rem 0;
}

section.alt {
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: #927A56;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Room Cards */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-card-content {
  padding: 1.5rem;
}

.room-card h3 {
  margin-bottom: 1rem;
}

.room-amenities {
  list-style: none;
  margin: 1rem 0;
}

.room-amenities li {
  padding: 0.25rem 0;
  color: var(--muted);
}

.room-amenities li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: bold;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 0.5rem;
  font-size: 0.875rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

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

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

.lightbox-close {
  position: absolute;
  top: -2rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Contact Form */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

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

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info a {
  color: var(--primary);
  font-weight: 600;
}

/* Map */
.map-container {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Footer */
.site-footer {
  background-color: #927A56;
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--white);
}

.footer-section a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-icon-circle {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  transition: transform 0.2s ease;
}

.social-icon-circle svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.social-icon-circle:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}


/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.alert.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
}

.mobile-bottom-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-bottom-nav li {
  flex: 1;
  text-align: center;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-bottom-nav a svg {
  width: 24px;
  height: 24px;
  margin-bottom: 0.25rem;
  stroke: var(--text);
  transition: stroke 0.2s ease;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a.active {
  color: var(--primary);
}

.mobile-bottom-nav a:hover svg,
.mobile-bottom-nav a.active svg {
  stroke: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-bottom-nav {
    display: block;
  }
  
  .header-content {
    justify-content: center;
  }
  
  .site-logo {
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .rooms-desktop {
    display: none !important;
  }
  
  .rooms-mobile {
    display: block !important;
    margin-top: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  #shop-section .shop-grid {
    grid-template-columns: 1fr !important;
  }
  
  #shop-section .shop-grid > div:first-child {
    padding: 2rem !important;
  }
  
  #shop-section .shop-grid > div:last-child {
    min-height: 200px !important;
    border-left: none !important;
    border-top: 1px solid #ddd;
  }
  
  #contact-section .contact-grid {
    grid-template-columns: 1fr !important;
  }
  
  #contact-section {
    padding: 3rem 0 !important;
  }
  
  #shop-section {
    padding: 3rem 0 !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Dropdown Rooms */
.rooms-desktop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.rooms-mobile {
  display: none;
}

.room-dropdown {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}

.room-dropdown summary {
  padding: 1.25rem;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.room-dropdown summary::-webkit-details-marker {
  display: none;
}

.dropdown-icon {
  transition: transform 0.3s ease;
  font-size: 1rem;
  color: var(--accent);
}

.room-dropdown[open] .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-content {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus {
  outline: none;
}

/* Loading States */
[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

[loading="lazy"].loaded {
  opacity: 1;
}

/* Floating CTA Bubble */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.cta-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  font-size: 1.75rem;
}

.cta-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.cta-bubble.whatsapp {
  background-color: #25D366;
  color: white;
}

.cta-bubble svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.cta-bubble.phone {
  background-color: var(--primary);
  color: white;
}


@media (max-width: 768px) {
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
  }
  
  .cta-bubble {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Desktop: Show grid, hide dropdowns */
@media (min-width: 769px) {
  .rooms-desktop {
    display: grid !important;
  }
  
  .rooms-mobile {
    display: none !important;
  }
}

/* Image Slider Styles */
.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}

.slider-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 2rem 2rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--primary);
}

.slider-btn:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: white;
  transform: scale(1.2);
  border-color: var(--accent);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .slider-btn.prev {
    left: 0.5rem;
  }
  
  .slider-btn.next {
    right: 0.5rem;
  }
  
  .slide-caption {
    font-size: 1rem;
    padding: 1.5rem 1rem 1rem;
  }
  
  .slider-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  }
}
