/* Header Styles */
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  width: 100%;
}
.header {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.459);
  padding: 10px 0;
}
.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 1rem 0;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.header-brand{
  width: 100%;
}
.header-brand>a{
  text-decoration: none;
  height: 100%;
  display: flex;
  gap: 5px;
  align-items: center;
}
.brand-title{
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .brand-title{
  font-size: 1rem;
}
.header-brand>a{
  gap: 1px;
}
}
.header.scrolled .brand-title {
  color: #2d3a2e;
}
.header-brand>a>img{
  height: 100%;
  max-width: 80px;
}
.nav-desktop {
  display: none;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #fff;
  position: relative;
  transition: color 0.3s;
  text-decoration: none;
  padding: 0.25rem 0;
}
.header.scrolled .nav-link {
  color: #2d3a2e;
}
.nav-link.active, .nav-link:focus, .nav-link:hover {
  color: #fbbf24;
}
.nav-underline {
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s;
}
.nav-link:hover .nav-underline, .nav-link.active .nav-underline {
  width: 100%;
}
.nav-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: #eab308;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  margin-left: 1rem;
}
.nav-btn:hover {
  background: #ca8a04;
  transform: scale(1.05);
}
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s;
}
.header.scrolled .mobile-menu-btn {
  color: #2d3a2e;
}
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}
.menu-icon, .close-icon {
  font-size: 1.5rem;
}
.mobile-menu {
  display: none;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-top: 1px solid #eee;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 40;
}
.mobile-menu.open {
  display: block;
}
.mobile-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #2d3a2e;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.1rem;
}
.mobile-nav-link:focus, .mobile-nav-link:hover {
  color: #fbbf24;
}
.mobile-nav-btn {
  background: #eab308;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  width: fit-content;
}
.mobile-nav-btn:hover {
  background: #ca8a04;
  transform: scale(1.05);
}

/* Footer Styles */
.footer {
  position: relative;
  background: linear-gradient(135deg, #1a2e1a, #2d3a2e 50%, #1a2e1a);
  color: #fff;
  overflow: hidden;
}
.footer-top-border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #eab308, #fbbf24);
  z-index: 2;
}
.footer-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.footer-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-grid>div{
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
.footer-grid>div{
  align-items: flex-start;
}
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-logo-circle {
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, #fbbf24, #ca8a04);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-inner {
  width: 1.5rem; height: 1.5rem;
  background: #fff;
  border-radius: 50%;
}
.footer-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: bold;
}
.footer-description {
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social {
  text-decoration: none;
  width: 2.5rem; height: 2.5rem;
  background: rgba(234,179,8,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #eab308;
  font-size: 1.25rem;
  transition: background 0.3s, transform 0.3s;
}
.footer-social:hover {
  background: #eab308;
  color: #fff;
  transform: scale(1.1);
}
.footer-links-section, .footer-contact-section {
  margin-top: 1.5rem;
}
.footer-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link {
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.footer-link:hover {
  color: #fbbf24;
  transform: translateX(0.25rem);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-item {
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-contact-item i {
  color: #eab308;
  font-size: 1.1rem;
  min-width: 1.25rem;
}
.footer-bottom {
  border-top: 1px solid rgba(55,65,81,0.5);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    gap: 0;
  }
}
.footer-copyright, .footer-tagline {
  font-family: 'Poppins', sans-serif;
  color: #9ca3af;
  font-size: 0.95rem;
}
.footer-bottom-accent {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, #ca8a04, #eab308, #ca8a04);
  opacity: 0.5;
  z-index: 2;
}

.floating-reserve-btn-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.floating-glow {
  position: absolute;
  inset: 0;
  background: #FFD700;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.2;
  pointer-events: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.floating-reserve-btn {
  position: relative;
  background: linear-gradient(90deg, #FFD700 0%, #FFEA70 50%, #FFD700 100%);
  color: #fff;
  padding: 16px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 0;
  outline: none;
}

.floating-reserve-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
}

.sparkle-icon {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 16px;
  color: #FFFACD;
  animation: pulse 1.5s infinite;
  pointer-events: none;
}

.calendar-icon {
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
  color:  #2d3a2e;
}

.ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}

.floating-reserve-btn:hover .ripple {
  animation: ripple-ping 0.8s;
  opacity: 0.2;
}

@keyframes ripple-ping {
  0% { transform: scale(1); opacity: 0.2; }
  100% { transform: scale(1.5); opacity: 0; }
}

.reserve-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  background: #1a2a33;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(26,42,51,0.2);
  white-space: nowrap;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 41;
}

.tooltip-arrow {
  position: absolute;
  top: 100%;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #1a2a33;
}
.quick-whatsapp-link{
  position: fixed;
  font-size: 50px;
  bottom: 10px;
  left: 10px;
  color: green;
  animation: jump 0.3s infinite;
  z-index: 1;
  max-width: 100px !important;
}
.quick-whatsapp-link:hover{
  cursor: pointer;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 786px) {
  .quick-whatsapp-link {
    font-size: 50px;
    bottom: 8px;
    right: 8px;
  }
}
.company-profile>a{
    color: #1976d2;
    text-decoration: none;
    font-weight: bold;
    font-size: large;
}