/* ==============================================
   FOOTER STYLES
   ============================================== */

.site-footer {
  background: #2a3131;
  color: #ffffff;
  padding: 60px 0 40px;
  font-family: 'Roboto Condensed', Arial, sans-serif;
}

.footer-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Footer Branding (Logo + Book Now) */
.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Footer Contact Data */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo-img {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #89b126;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: color 0.3s ease;
}

.contact-text {
  color: #cccccc;
  font-weight: 300;
}

.contact-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-book-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid white;
  padding: 12px 32px;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-book-btn svg {
  stroke: currentColor;
  flex-shrink: 0;
}

.footer-book-btn:hover {
  background: #7a9e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(137, 177, 38, 0.3);
}

/* Footer Menu Sections */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-menu-title {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-link:hover {
  color: #89b126;
}

/* Services Column (Experiences & Rooms) */
.footer-services .footer-menu-title {
  margin-bottom: 30px;
}

.footer-services .footer-menu,
.footer-links .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services .footer-menu li,
.footer-links .footer-menu li {
  margin-bottom: 12px;
}

.footer-services .footer-link,
.footer-links .footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  line-height: 1.5;
  display: block;
}

.footer-services .footer-link:hover,
.footer-links .footer-link:hover {
  color: #89b126;
}

/* About Column Spacing */
.footer-about .footer-menu-title {
  margin-bottom: 15px;
}

.footer-about .footer-menu {
  margin-bottom: 20px;
}

/* Info Column Spacing */
.footer-info .footer-menu-title {
  margin-bottom: 15px;
}

/* Social Icons */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #89b126;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(137, 177, 38, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    padding: 0 30px;
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  .footer-branding {
    grid-column: 1;
  }
  
  .footer-contact {
    grid-column: 2;
  }
  
  .footer-services {
    grid-column: 3;
  }
  
  .footer-links {
    grid-column: 4;
  }
  
  .footer-social {
    grid-column: 1 / -1;
    align-items: center;
    margin-top: 20px;
  }
  
  .social-icons {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-branding {
    grid-column: 1;
  }
  
  .footer-contact {
    grid-column: 2;
  }
  
  .footer-services {
    grid-column: 1;
  }
  
  .footer-links {
    grid-column: 2;
  }
  
  .footer-social {
    grid-column: 1 / -1;
    align-items: center;
  }
  
  .social-icons {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 30px;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    text-align: center;
  }
  
  .footer-column {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  
  .footer-branding {
    align-items: center;
    width: 100%;
  }
  
  .footer-logo {
    text-align: center;
    width: 100%;
  }
  
  .footer-logo-img {
    margin: 0 auto;
  }
  
  .footer-contact {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .footer-contact-info {
    align-items: center;
    width: 100%;
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-address {
    align-items: center;
    text-align: center;
  }
  
  .footer-book-btn {
    align-self: center;
    margin: 0 auto;
  }
  
  .footer-services,
  .footer-links,
  .footer-about,
  .footer-info {
    align-items: center;
    width: 100%;
  }
  
  .footer-services .footer-menu,
  .footer-links .footer-menu,
  .footer-about .footer-menu,
  .footer-info .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .footer-services .footer-menu li,
  .footer-links .footer-menu li,
  .footer-about .footer-menu li,
  .footer-info .footer-menu li {
    text-align: center;
    width: 100%;
  }
  
  .footer-social {
    align-items: center;
    width: 100%;
  }
  
  .social-icons {
    justify-content: center;
    flex-direction: row;
  }
  
  .footer-menu-title {
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
  }
  
  .footer-menu {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 20px;
  }
  
  .footer-container {
    padding: 0 16px;
    gap: 25px;
  }
  
  .footer-column {
    width: 100%;
    align-items: center;
  }
  
  .footer-contact-info {
    gap: 15px;
    align-items: center;
    width: 100%;
  }
  
  .contact-item {
    font-size: 13px;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-menu-title {
    font-size: 11px;
    margin-bottom: 12px;
    width: 100%;
  }
  
  .footer-link {
    font-size: 10px;
  }
  
  .footer-services .footer-menu,
  .footer-links .footer-menu,
  .footer-about .footer-menu,
  .footer-info .footer-menu {
    align-items: center;
    width: 100%;
  }
  
  .footer-book-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
  }
  
  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Footer Bottom - Copyright */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 30px;
}

.footer-bottom-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p,
.footer-powered p {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888888;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-powered a {
  color: #89b126;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-powered a:hover {
  color: #7a9e22;
  text-decoration: underline;
}

/* Copyright Responsive */
@media (max-width: 768px) {
  .footer-bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }
  
  .footer-bottom-container {
    padding: 0 16px;
  }
  
  .footer-copyright p,
  .footer-powered p {
    font-size: 11px;
  }
}

/* ==============================================
   WHATSAPP FLOATING BUTTON
   ============================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  left: 75px;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.whatsapp-tooltip {
  position: absolute;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
  background: #2a3131;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #2a3131;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-tooltip {
    font-size: 13px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* ==============================================
   SCROLL TO TOP BUTTON
   ============================================== */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #89b126;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(137, 177, 38, 0.4);
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #7a9e22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(137, 177, 38, 0.6);
}

.scroll-to-top:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(137, 177, 38, 0.5);
}

.scroll-to-top svg {
  stroke: currentColor;
}

/* Scroll to Top Button Responsive */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}
