@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-primary: #2E923B;
  --color-primary-hover: #226D2B;
  --color-primary-light: #EFF8F0;
  --color-secondary: #3DA1DA;
  --color-secondary-hover: #2A8CB9;
  --color-secondary-light: #EFF7FC;
  --color-bg: #F7FAF8;
  --color-white: #ffffff;
  --color-dark: #1E2A21;
  --color-muted: #56685B;
  --color-border: #E1EBE4;
  --font-headers: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(30, 42, 33, 0.04);
  --shadow-md: 0 8px 20px rgba(30, 42, 33, 0.08);
  --shadow-lg: 0 16px 32px rgba(30, 42, 33, 0.12);
}

/* Global Reset & Base Styles */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headers);
  color: var(--color-dark);
  font-weight: 700;
}

p {
  color: var(--color-muted);
  font-weight: 400;
  font-size: 1.05rem;
}

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

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

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

/* Custom Container */
.container-custom {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
}

/* Button Custom Styles */
.btn-custom-primary {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid var(--color-primary);
  transition: var(--transition-smooth);
}

.btn-custom-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(59, 98, 82, 0.2);
}

.btn-custom-secondary {
  background-color: transparent;
  color: var(--color-primary) !important;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid var(--color-primary);
  transition: var(--transition-smooth);
}

.btn-custom-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(59, 98, 82, 0.1);
}

.hero-buttons .btn-custom-secondary {
  color: var(--color-white) !important;
  border-color: var(--color-white);
}

.hero-buttons .btn-custom-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary) !important;
  border-color: var(--color-white);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.btn-accent {
  background-color: var(--color-secondary);
  color: var(--color-white) !important;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid var(--color-secondary);
  transition: var(--transition-smooth);
}

.btn-accent:hover {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(200, 125, 85, 0.2);
}

/* Sticky Header & Navbar */
.custom-navbar {
  background-color: rgba(252, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
  padding: 15px 24px;
}

.custom-navbar.navbar-scrolled {
  padding: 10px 24px;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.navbar-brand-custom {
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-primary) !important;
  letter-spacing: 0.5px;
}

.navbar-brand-custom span {
  color: var(--color-secondary);
}

.navbar-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.custom-navbar.navbar-scrolled .navbar-logo {
  height: 38px;
}

.footer-logo {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.nav-link-custom {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-dark) !important;
  margin: 0 10px;
  position: relative;
  padding: 5px 0 !important;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition-smooth);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 100%;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--color-primary) !important;
}

.navbar-toggler-custom {
  border: none;
  outline: none;
  padding: 5px;
}

.navbar-toggler-custom:focus {
  box-shadow: none;
}

.navbar-toggler-icon-custom {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  transition: var(--transition-smooth);
}

.navbar-toggler-icon-custom::before {
  top: -8px;
}

.navbar-toggler-icon-custom::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  margin-top: 70px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(30, 42, 33, 0.85) 0%, rgba(30, 42, 33, 0.45) 60%, rgba(30, 42, 33, 0.2) 100%), url('images/img/img6.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: backgroundScale 20s infinite alternate ease-in-out;
}

.hero-section > * {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-secondary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.text-accent-gradient {
  background: linear-gradient(135deg, #39B54A, #3DA1DA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.45rem;
  font-weight: 300;
  margin-bottom: 35px;
  color: #E2ECE5;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s;
}

.hero-buttons {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.8s;
}

.hero-buttons .btn {
  margin-right: 15px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* About Us Section */
.about-section {
  background-color: var(--color-white);
}

.about-img-wrapper {
  position: relative;
  padding: 15px;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border: 8px solid var(--color-primary-light);
  z-index: 1;
  border-radius: 8px;
}

.about-img {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-content {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

/* Accommodation Section */
.accommodation-card {
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.accommodation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 98, 82, 0.2);
}

.accommodation-img-wrapper {
  height: 250px;
  overflow: hidden;
}

.accommodation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.accommodation-card:hover .accommodation-img {
  transform: scale(1.05);
}

.accommodation-body {
  padding: 30px;
}

.accommodation-badge {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 15px;
}

.accommodation-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.accommodation-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.accommodation-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  color: var(--color-dark);
}

.accommodation-list li i {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-right: 12px;
  width: 20px;
}

/* Amenities Section */
.amenities-section {
  background-color: var(--color-primary-light);
}

.amenity-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(59, 98, 82, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

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

.amenity-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.amenity-title {
  font-size: 1.15rem;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--color-dark);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--color-white);
}

.gallery-grid {
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 280px;
  margin-bottom: 24px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(30, 42, 33, 0.1), rgba(30, 42, 33, 0.8));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.gallery-info h4 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.gallery-info p {
  color: #D3E0D9;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Custom Lightbox Modal */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 42, 33, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  animation: zoomIn 0.3s ease;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--color-secondary);
  transform: scale(1.1);
}

.lightbox-caption {
  color: var(--color-white);
  text-align: center;
  margin-top: 15px;
  font-family: var(--font-headers);
  font-size: 1.2rem;
}

/* Nearby Places Section */
.places-section {
  background-color: var(--color-bg);
}

.place-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  align-items: flex-start;
}

.place-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 138, 101, 0.2);
}

.place-icon {
  font-size: 1.5rem;
  color: var(--color-secondary);
  background-color: var(--color-secondary-light);
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.place-content h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.place-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--color-white);
}

.contact-card {
  background-color: var(--color-primary-light);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  border: 1px solid var(--color-border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

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

.contact-info-icon {
  font-size: 1.2rem;
  color: var(--color-primary);
  background-color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: var(--shadow-sm);
}

.contact-info-text h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.contact-info-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.contact-info-text a {
  color: var(--color-dark);
}

.contact-info-text a:hover {
  color: var(--color-primary);
}

/* Form Styles */
.contact-form-wrapper {
  padding: 20px 0;
}

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

.form-control-custom {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 14px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  color: var(--color-dark);
}

.form-control-custom:focus {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(59, 98, 82, 0.08);
  outline: none;
}

.form-control-custom::placeholder {
  color: #90A299;
}

.form-label-custom {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

/* Map Wrapper */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 250px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Quick Action Buttons under Map */
.contact-actions {
  display: flex;
  gap: 15px;
}

.contact-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Footer Styles */
.custom-footer {
  background-color: var(--color-dark);
  color: #CFDAD4;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  font-family: var(--font-headers);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white) !important;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand span {
  color: var(--color-secondary);
}

.footer-desc {
  font-size: 0.95rem;
  color: #A0B0A7;
  margin-bottom: 25px;
}

.footer-title {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

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

.footer-links a {
  color: #A0B0A7;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

.footer-contact {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #A0B0A7;
}

.footer-contact li i {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-right: 12px;
  margin-top: 3px;
}

.footer-contact a {
  color: #A0B0A7;
}

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

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #83958C;
  margin-bottom: 0;
}

/* Floating Actions */
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-float {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white) !important;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.btn-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-float-whatsapp {
  background-color: #25D366;
}

.btn-float-whatsapp:hover {
  background-color: #20BA56;
}

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

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Toast Success Alert */
.custom-toast {
  position: fixed;
  top: 90px;
  right: 30px;
  z-index: 2000;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.custom-toast.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.custom-toast i {
  font-size: 1.3rem;
  color: var(--color-secondary-light);
}

/* Adjustments for smaller devices */
@media (max-width: 991.98px) {
  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
  }
  
  .nav-link-custom {
    margin: 8px 0;
    display: block;
    width: 100%;
  }
  
  .navbar-nav {
    align-items: flex-start !important;
    width: 100%;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
  }
  
  .navbar-nav .ms-lg-3 {
    margin-left: 0 !important;
    width: 100%;
  }
  
  .navbar-nav .btn-accent {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 120px 0 80px 0;
    text-align: center;
  }
  
  .hero-section::before {
    background-image: linear-gradient(to bottom, rgba(30, 42, 33, 0.85) 0%, rgba(30, 42, 33, 0.6) 100%), url('images/img/img6.webp');
  }

  .hero-title {
    font-size: 2.4rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.15rem !important;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-buttons .btn {
    margin-right: 0 !important;
    width: 100%;
    max-width: 280px;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .section-header h2 {
    font-size: 2rem !important;
  }
  
  .gallery-item {
    height: 240px !important;
    margin-bottom: 15px;
  }
  
  .custom-footer {
    padding: 50px 0 20px 0;
  }
  
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
  }
}

@media (max-width: 576px) {
  .floating-actions-container {
    bottom: 20px;
    right: 20px;
  }
  .btn-float {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .custom-toast {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 90px;
    transform: translateY(200px);
  }
  .custom-toast.show {
    transform: translateY(0);
  }
  
  .hero-title {
    font-size: 1.9rem !important;
  }
  
  .hero-badge {
    padding: 6px 12px;
    font-size: 0.75rem;
    margin-bottom: 18px;
  }
  
  .amenity-card {
    padding: 20px 10px;
  }
  
  .amenity-icon-wrapper {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .amenity-title {
    font-size: 0.95rem;
  }
  
  .place-card {
    padding: 16px;
  }
  
  .place-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.25rem;
    margin-right: 12px;
  }
  
  .place-content h4 {
    font-size: 1.1rem;
  }
  
  .place-content p {
    font-size: 0.88rem;
  }
  
  .contact-card {
    padding: 24px 20px;
  }
  
  .contact-form-wrapper {
    padding: 10px 0;
  }
}
