.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(6px) saturate(120%);
  border-bottom: 1px solid rgba(10, 12, 13, 0.06);
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.navbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.navbar::-webkit-scrollbar {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.nav-logo {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-logo img {
  height: 55px;
  display: block;
}

.nav-cta {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}
.nav-center {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  overflow: visible;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  overflow: visible;
}

.nav-item {
  position: relative;
  overflow: visible;
}

.nav-link {
  display: inline-block;
  color: var(--text-color);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 4px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  height: 2px;
  bottom: -2px;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Active link color change */
.nav-link.active {
  color: var(--secondary-color);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #12121fff, #000) !important;
  color: var(--footer-text);
  padding: 60px 20px 20px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  text-align: left;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--footer-text);
  text-transform: uppercase;
  font-family: var(--font-secondary);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-column ul li {
  margin-bottom: 10px;
  text-align: left;
}

.footer-column ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--emerald);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-bottom span {
  color: var(--emerald);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transform: translateY(20px);
  overflow: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: var(--primary-color);
  z-index: 1;
  transition: all 0.3s;
  transform-origin: bottom;
  border-radius: 50%;
  opacity: 0.95;
  pointer-events: none;
}

.back-to-top:hover::after {
  height: 100%;
}

.back-to-top i {
  position: relative;
  z-index: 2;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: #000;
  z-index: 1;
  transition: all 0.3s;
  transform-origin: bottom;
  border-radius: 50%;
  opacity: 0.95;
  pointer-events: none;
}

.whatsapp-float:hover::after {
  height: 100%;
}

.whatsapp-float i {
  position: relative;
  z-index: 2;
}

.whatsapp-float.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* Book Now button styles */
.book-now-btn {
  --btn-h: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: var(--btn-h);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0 20px;
  overflow: hidden;
  position: relative;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s;
}

.book-now-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: #000;
  z-index: 1;
  transition: all 0.3s;
  transform-origin: bottom;
  border: none;
  border-radius: 999px;
  opacity: 0.95;
  pointer-events: none;
}

.book-now-btn:hover::after {
  height: 100%;
  border: none;
}

.book-now-btn span {
  position: relative;
  z-index: 2;
}

/* WhatsApp button styles */
.whatsapp-btn {
  --btn-h: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: var(--btn-h);
  border-radius: 999px;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  padding: 0 12px;
  width: 48px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #25d366, #20c55c);
  color: #fff;
  font-weight: 400;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn .w-icon {
  width: 34px;
  text-align: center;
  font-size: 18px;
  z-index: 2;
  animation: pulse 2s infinite;
}
.whatsapp-btn .w-label {
  opacity: 0;
  transform: translateX(-6px);
  white-space: nowrap;
  z-index: 2;
  transition: all 0.4s;
}
.whatsapp-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: #128c7e;
  z-index: 1;
  transition: all 0.3s;
  transform-origin: bottom;
  border-radius: 999px;
  opacity: 0.95;
  pointer-events: none;
}
.whatsapp-btn.expand {
  width: 170px;
  transition: all 0.3s;
}
.whatsapp-btn.expand .w-label {
  opacity: 1;
  transform: none;
}
.whatsapp-btn:hover::after {
  height: 100%;
}
.whatsapp-btn:hover .w-label,
.whatsapp-btn:hover .w-icon {
  color: #fff;
  z-index: 3;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  background: none;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-color);
  padding: 8px;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #0f1517, #0a0e10);
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-panel.open {
  right: 0;
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-panel-header h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-links {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateX(20px);
  opacity: 0;
}

.mobile-panel.open .mobile-links a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-panel.open .mobile-links a:nth-child(1) {
  transition: all 0.4s ease 0.1s;
}
.mobile-panel.open .mobile-links a:nth-child(2) {
  transition: all 0.4s ease 0.15s;
}
.mobile-panel.open .mobile-links a:nth-child(3) {
  transition: all 0.4s ease 0.2s;
}
.mobile-panel.open .mobile-links a:nth-child(4) {
  transition: all 0.4s ease 0.25s;
}
.mobile-panel.open .mobile-links a:nth-child(5) {
  transition: all 0.4s ease 0.3s;
}
.mobile-panel.open .mobile-links a:nth-child(6) {
  transition: all 0.4s ease 0.35s;
}

.mobile-links a:hover,
.mobile-links a:active {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
  transform: translateX(4px);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  backdrop-filter: blur(0px);
}

.overlay.show {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
}

/* Desktop styles */
@media (min-width: 1024px) {
  .navbar {
    height: 80px;
  }

  .nav-logo img {
    height: 75px;
  }

  .mobile-panel,
  .overlay,
  .hamburger {
    display: none;
  }

  .footer-column:first-child {
    text-align: left;
  }
}

/* Mobile specific */
@media (max-width: 1023px) {
  .nav-center {
    display: none;
  }

  .book-now-btn {
    display: none;
  }

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

@media (prefers-color-scheme: dark) {
  .nav-logo img {
    content: url("../images/logo2.png");
  }
}

html,
body {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Contact Information Styles */
.contact-info {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 15px;
}

.contact-item i {
  margin-right: 10px;
  color: var(--emerald);
  min-width: 20px;
  text-align: center;
  margin-top: 3px;
}

.contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--emerald);
}

/* Location specific styling */
.contact-item.location i {
  color: #e74c3c; /* Red color for location marker */
}

/* Address specific styling */
.contact-item.address i {
  color: #3498db; /* Blue color for address */
}

/* Responsive adjustments for contact info */
@media (max-width: 768px) {
  .contact-item {
    font-size: 14px;
  }

  .contact-item span {
    line-height: 1.4;
  }
}
