/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 300;
  letter-spacing: 1px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

/* Navigation */
.nav {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.nav .logo {
  height: 60px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav .logo:hover {
  transform: scale(1.05);
}

.nav nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 0;
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #2e7d32;
}

/* Mobile menu toggle button */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.lang-toggle {
  display: flex;
  gap: 5px;
  background: #f0f0f0;
  border-radius: 20px;
  padding: 3px;
  flex-shrink: 0;
  margin-left: 20px;
}

.lang-toggle button {
  background: none;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 17px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.85rem;
}

.lang-toggle button.active {
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  color: white;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

/* Hero */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 4rem;
  margin: 0;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.5rem;
  margin: 20px 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn-primary, .btn-light {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-light:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Sections */
.intro, .about, .reviews {
  padding: 100px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.8);
  border-radius: 20px;
  margin: 50px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.about h2, .reviews h2 {
  margin-bottom: 30px;
  color: #2e7d32;
}

.platform-reviews {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 20px;
}

#airbnb-reviews, #booking-reviews {
  width: 45%;
  min-width: 300px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reviews .review-slide {
  display: flex;
  animation: slide 25s linear infinite;
}

.review-item {
  flex-shrink: 0;
  width: 350px;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  margin: 0 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.review-item p {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-item span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

@keyframes slide {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.reviews p {
  margin-top: 30px;
  font-size: 1.1rem;
}

.reviews a {
  color: #2e7d32;
  font-weight: 500;
  transition: color 0.3s;
}

.reviews a:hover {
  color: #1b5e20;
}

/* Fade animation */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page content */
.page {
  padding: 140px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}

.page h1 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 50px;
  color: #2e7d32;
  position: relative;
}

.page h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  border-radius: 2px;
}

.block {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.block:hover {
  transform: translateY(-5px);
}

.block.reverse {
  flex-direction: row-reverse;
}

.block img {
  width: 50%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.block img:hover {
  transform: scale(1.02);
}

.room {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.room:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.room img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.room-action {
  margin-top: 20px;
  text-align: left;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.steps div {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.steps div:hover {
  transform: translateY(-3px);
}

.map {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px;
  display: block;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.booking-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.booking-calendar {
  text-align: center;
  margin: 40px 0;
}

#calendar {
  max-width: 400px;
  margin: 0 auto;
}

.pricing {
  margin: 40px 0;
}

.room-pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.room-rate {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.room-rate h4 {
  margin-bottom: 10px;
}

.currency-display {
  display: flex;
  justify-content: space-around;
  font-weight: bold;
}

.sync-info {
  background: #e8f5e8;
  padding: 20px;
  border-radius: 10px;
  margin: 40px 0;
  text-align: center;
}

/* Responsive updates */
@media (max-width: 1024px) {
  .nav {
    padding: 15px 20px;
  }

  .nav nav {
    gap: 20px;
  }

  .nav a {
    font-size: 0.9rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .hero-content h1 {
    font-size: 3rem;
  }

  .block {
    gap: 30px;
    padding: 30px;
  }

  .room {
    gap: 30px;
    padding: 25px;
  }

  .room img {
    width: 300px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  /* Navigation adjustments for mobile */
  .nav {
    padding: 15px 15px;
    justify-content: space-between;
  }

  .nav nav {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: right 0.3s ease;
    padding: 20px 0;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 1px solid #f0f0f0;
  }

  .nav nav.active {
    right: 0;
  }

  .nav a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover {
    background: #f5f5f5;
    border-radius: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .lang-toggle {
    position: fixed;
    bottom: 90px;
    right: 15px;
    z-index: 999;
    margin-left: 0;
  }

  .logo {
    height: 50px !important;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .hero {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
  }

  .btn-primary, .btn-light {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
  }

  .intro, .about, .reviews {
    padding: 50px 20px;
    margin: 30px 15px;
    border-radius: 15px;
  }

  .page {
    padding: 120px 15px 40px;
  }

  .page h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .block {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin-bottom: 40px;
  }

  .block img {
    width: 100%;
    border-radius: 12px;
  }

  .room {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 30px;
  }

  .room img {
    width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 12px;
  }

  .room-action {
    text-align: center;
  }

  .room-action a {
    width: 100%;
    display: block;
  }

  .steps {
    gap: 15px;
  }

  .steps div {
    padding: 20px;
    border-radius: 12px;
  }

  .review-item {
    width: 280px;
    padding: 20px;
    margin: 0 10px;
  }

  .booking-links {
    flex-direction: column;
    gap: 12px;
  }

  .booking-links a {
    width: 100%;
    text-align: center;
  }

  .platform-reviews {
    flex-direction: column;
    gap: 20px;
  }

  #airbnb-reviews, #booking-reviews {
    width: 100%;
    min-width: unset;
  }

  .room-pricing {
    max-width: 100%;
  }

  .room-rate {
    padding: 15px;
  }

  .currency-display {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  #calendar {
    max-width: 100%;
  }

  #calendar input,
  #check-availability {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin: 8px auto;
  }

  /* Adjust floating buttons for mobile */
  .whatsapp-float {
    bottom: 30px;
    right: 15px;
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  #back-to-top {
    bottom: 95px;
    right: 15px;
    width: 48px;
    height: 48px;
  }

  .sync-info {
    padding: 15px;
    margin: 30px 0;
  }

  footer {
    padding: 20px 15px;
    font-size: 0.9rem;
  }

  .map {
    max-width: 100%;
    margin: 0 auto 20px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 12px 10px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }

  .hero {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .page {
    padding: 110px 12px 30px;
  }

  .page h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .intro, .about, .reviews {
    padding: 40px 15px;
    margin: 20px 10px;
    border-radius: 12px;
  }

  .intro p, .about p, .reviews p {
    font-size: 0.95rem;
  }

  .block {
    padding: 15px;
    margin-bottom: 30px;
  }

  .room {
    padding: 15px;
    margin-bottom: 20px;
  }

  .review-item {
    width: 240px;
    padding: 15px;
    margin: 0 8px;
  }

  .review-item p {
    font-size: 0.95rem;
  }

  .buttons {
    padding: 0 10px;
  }

  .btn-primary, .btn-light {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .steps {
    gap: 12px;
  }

  .steps div {
    padding: 15px;
  }

  .steps div h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .steps div p {
    font-size: 0.85rem;
  }

  #calendar input,
  #check-availability {
    padding: 8px;
    font-size: 0.85rem;
  }

  .whatsapp-float {
    bottom: 25px;
    right: 12px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  #back-to-top {
    bottom: 85px;
    right: 12px;
    width: 45px;
    height: 45px;
  }

  .lang-toggle {
    bottom: 85px;
    right: 12px;
  }

  .lang-toggle button {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .sync-info {
    padding: 12px;
    margin: 20px 0;
  }

  .room-pricing {
    gap: 12px;
  }

  .room-rate {
    padding: 12px;
  }

  footer {
    padding: 15px 10px;
    font-size: 0.85rem;
  }
}

/* Additional animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: white;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #4caf50, #66bb6a);
}

/* Back to top button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-float span {
  line-height: 1;
}

/* WhatsApp button in booking links */
.whatsapp-btn {
  background: linear-gradient(45deg, #25d366, #128c7e) !important;
}

.whatsapp-btn:hover {
  background: linear-gradient(45deg, #128c7e, #075e54) !important;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.rating {
  font-size: 1.2rem;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 30px !important;
}

/* Activities Section */
.activities {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 50px auto;
}

.activities h2 {
  color: #2e7d32;
  margin-bottom: 20px;
}

.activities > p {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 50px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.activity-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.activity-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
  transform: scale(1.05);
}

.activity-card h3 {
  padding: 25px 20px 10px;
  color: #2e7d32;
  font-size: 1.3rem;
  margin: 0;
}

.activity-card p {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Rooms & Equipment Section */
.rooms-equipment {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 50px auto;
  background: linear-gradient(135deg, rgba(232,245,233,0.5) 0%, rgba(200,230,201,0.3) 100%);
  border-radius: 20px;
}

.rooms-equipment h2 {
  color: #2e7d32;
  margin-bottom: 20px;
}

.rooms-equipment > p {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 50px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.amenity-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #2e7d32;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.amenity-card h3 {
  color: #2e7d32;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.amenity-card ul {
  list-style: none;
  padding: 0;
}

.amenity-card li {
  padding: 10px 0;
  color: #666;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.amenity-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 1.2rem;
}

.cta-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid rgba(46, 125, 50, 0.2);
}

.cta-section .btn-primary {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* Responsive Activities Grid */
@media (max-width: 768px) {
  .activities {
    padding: 60px 15px;
    margin: 30px 15px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .activity-card h3 {
    padding: 20px 15px 8px;
    font-size: 1.1rem;
  }

  .activity-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
  }

  .rooms-equipment {
    padding: 60px 15px;
    margin: 30px 15px;
    border-radius: 15px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenity-card {
    padding: 20px;
    border-left-width: 3px;
  }

  .amenity-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .amenity-card li {
    padding: 8px 0;
    padding-left: 20px;
    font-size: 0.9rem;
  }

  .cta-section {
    margin-top: 30px;
    padding-top: 20px;
  }
}

/* Comfort & Amenities Section */
.comfort-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

.comfort-section h2 {
  color: #2e7d32;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.comfort-section > p {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comfort-category {
  margin-bottom: 60px;
  text-align: center;
}

.category-title {
  color: #2e7d32;
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.comfort-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.comfort-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-left: 4px solid #2e7d32;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.comfort-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.comfort-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(46, 125, 50, 0.15);
  border-left-color: #4caf50;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
}

.comfort-card:hover::before {
  right: -20px;
}

.comfort-card .card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.comfort-card:hover .card-icon {
  transform: scale(1.1);
}

.comfort-card h4 {
  color: #2e7d32;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.comfort-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.satisfaction-guarantee {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(76, 175, 80, 0.08) 100%);
  border: 2px solid #e8f5e9;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.satisfaction-guarantee::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.guarantee-icon {
  font-size: 3rem;
}

.satisfaction-guarantee h3 {
  color: #2e7d32;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 600;
}

.satisfaction-guarantee p {
  color: #666;
  font-size: 1rem;
  margin-top: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Mobile Responsiveness - Comfort Section */
@media (max-width: 768px) {
  .comfort-section {
    padding: 60px 15px;
    margin: 30px 15px;
  }

  .comfort-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .comfort-section > p {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .category-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .comfort-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
  }

  .comfort-card {
    padding: 25px 18px;
    border-left-width: 3px;
  }

  .comfort-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .comfort-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .comfort-card p {
    font-size: 0.9rem;
  }

  .satisfaction-guarantee {
    padding: 35px 20px;
    margin-top: 40px;
  }

  .guarantee-badge {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
  }

  .guarantee-icon {
    font-size: 2.5rem;
  }

  .satisfaction-guarantee h3 {
    font-size: 1.3rem;
  }

  .satisfaction-guarantee p {
    font-size: 0.9rem;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .comfort-section {
    padding: 50px 12px;
    margin: 20px 10px;
  }

  .comfort-section h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .comfort-section > p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .category-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .comfort-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
  }

  .comfort-card {
    padding: 20px 15px;
    border-left-width: 3px;
  }

  .comfort-card .card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .comfort-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .comfort-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .satisfaction-guarantee {
    padding: 25px 15px;
    margin-top: 30px;
  }

  .guarantee-icon {
    font-size: 2rem;
  }

  .satisfaction-guarantee h3 {
    font-size: 1.15rem;
  }

  .satisfaction-guarantee p {
    font-size: 0.85rem;
    margin-top: 10px;
  }
}

.contact {
  max-width: 600px;
  margin: 50px auto;
  padding: 50px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #2e7d32;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  padding: 14px 30px;
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

.contact-info {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #e8e8e8;
  text-align: center;
}

.contact-info h3 {
  color: #2e7d32;
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-details a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #1b5e20;
}

.form-success {
  display: none;
  padding: 20px;
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  border-radius: 8px;
  color: #2e7d32;
  text-align: center;
  margin-top: 20px;
}

/* Booking Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2 {
  color: #2e7d32;
  margin-bottom: 30px;
  border-bottom: 2px solid #e8f5e9;
  padding-bottom: 15px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close:hover,
.close:focus {
  color: #2e7d32;
}

#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #2e7d32;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

#bookingForm button {
  padding: 14px 30px;
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

#bookingForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.booking-info {
  background: #f0f8f0;
  border-left: 4px solid #2e7d32;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.booking-info p {
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 12px;
}

.booking-info ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.booking-info li {
  padding: 8px 0;
  color: #666;
  padding-left: 25px;
  position: relative;
}

.booking-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.whatsapp-contact {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
}

.whatsapp-contact p {
  margin: 0 0 10px 0;
  color: #666;
  font-size: 0.95rem;
  font-weight: normal;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background: #128c7e;
  transform: scale(1.05);
}

/* Restauration Section Styles */
.restauration-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

.restauration-section h2 {
  color: #2e7d32;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.restauration-section > .section-intro {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.restauration-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.restauration-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #2e7d32;
  text-align: center;
}

.restauration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
}

.meal-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.restauration-card h3 {
  color: #2e7d32;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.meal-price {
  font-size: 1.8rem;
  color: #2e7d32;
  margin: 15px 0;
  font-weight: 700;
}

.tax-note {
  color: #666;
  font-size: 0.9rem;
  margin: 10px 0;
  font-style: italic;
}

.discount-note {
  color: #4caf50;
  font-size: 0.9rem;
  margin: 10px 0;
  font-weight: 600;
}

.meal-details {
  list-style: none;
  padding: 20px 0;
  text-align: left;
  border-top: 1px solid #e0e0e0;
  margin-top: 20px;
}

.meal-details li {
  padding: 10px 0;
  color: #666;
  font-size: 0.95rem;
}

/* Room Pricing Info */
.room-pricing-info {
  background: #f0f8f0;
  border-left: 4px solid #2e7d32;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  text-align: left;
}

.room-pricing-info p {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #333;
}

.room-pricing-info strong {
  color: #2e7d32;
}

/* Map Container */
.map-container {
  max-width: 1000px;
  margin: 60px auto;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding-bottom: 20px;
}

.map-container h2 {
  color: #2e7d32;
  padding: 30px 20px 0;
  margin: 0 0 20px 0;
}

.google-map {
  border-radius: 10px;
  margin: 0 20px;
}

/* Access Introduction */
.access-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  background: rgba(255,255,255,0.8);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.access-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

/* Currency Selector */
.currency-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  background: #f0f8f0;
  padding: 15px 20px;
  border-radius: 8px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.currency-selector label {
  font-weight: 600;
  color: #2e7d32;
}

.currency-selector select {
  padding: 8px 12px;
  border: 2px solid #2e7d32;
  border-radius: 6px;
  background: white;
  color: #333;
  font-weight: 600;
  cursor: pointer;
}

.currency-selector select:hover,
.currency-selector select:focus {
  background: #2e7d32;
  color: white;
  outline: none;
}

/* Meals Pricing Section */
.meals-pricing {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(232,245,233,0.5) 0%, rgba(200,230,201,0.3) 100%);
  border-radius: 15px;
  border: 2px solid #e8f5e9;
}

.meals-pricing h3 {
  color: #2e7d32;
  text-align: center;
  margin-bottom: 40px;
}

.meal-pricing {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.meal-pricing h4 {
  color: #2e7d32;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.meal-pricing .currency-display {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.meal-pricing .currency-display span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2e7d32;
}

.meal-pricing .meal-details {
  margin-top: 15px;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

.meal-pricing .meal-details li {
  font-size: 0.9rem;
}

/* Booking Button */
.booking-btn {
  padding: 12px 30px;
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.booking-btn:active {
  transform: translateY(0);
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 25px;
    margin: 30% auto;
  }

  .restauration-section {
    padding: 60px 15px;
    margin: 30px 15px;
  }

  .restauration-section h2 {
    font-size: 1.8rem;
  }

  .restauration-section > .section-intro {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .restauration-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .restauration-card {
    padding: 25px 20px;
  }

  .restauration-card h3 {
    font-size: 1.2rem;
  }

  .meal-price {
    font-size: 1.5rem;
  }

  .map-container {
    margin: 40px auto;
    padding-bottom: 15px;
  }

  .google-map {
    margin: 0 15px;
    border-radius: 8px;
  }

  .currency-selector {
    flex-direction: column;
    gap: 10px;
    padding: 12px 15px;
  }

  .meals-pricing {
    padding: 25px 15px;
    margin: 40px 15px;
  }

  .meal-pricing {
    padding: 18px;
    margin-bottom: 18px;
  }

  .meal-pricing h4 {
    font-size: 1.15rem;
  }

  .room-pricing-info {
    padding: 12px;
    margin: 12px 0;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    padding: 20px;
    margin: 40% auto;
  }

  .modal-content h2 {
    font-size: 1.3rem;
  }

  .restauration-section {
    padding: 50px 12px;
    margin: 20px 10px;
  }

  .restauration-section h2 {
    font-size: 1.5rem;
  }

  .restauration-cards {
    gap: 20px;
  }

  .restauration-card {
    padding: 20px 15px;
  }

  .meal-icon {
    font-size: 2.5rem;
  }

  .restauration-card h3 {
    font-size: 1.1rem;
  }

  .meal-price {
    font-size: 1.3rem;
  }

  .meal-details li {
    font-size: 0.85rem;
  }

  .google-map {
    height: 350px;
  }

  .booking-form,
  .form-group input,
  .form-group select {
    font-size: 16px;
  }
}