/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Urbanist', sans-serif;
  background-color: #fff;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Top Marquee ===== */
.top-marquee {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: black;
  color: white;
  padding: 2px 10px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.vertical-divider {
  height: 45px;
  width: 2.5px;
  background-color: white;
  opacity: 0.5;
}

.top-right-icons {
  display: flex;
  gap: 20px;
}

.top-right-icons span::before {
  margin-right: 4px;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 40px;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

.icon-wrap:hover {
  transform: perspective(600px) rotateX(4deg) rotateY(5deg) scale(1.18);
  filter: brightness(1.15) contrast(1.05);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
}

.icon-wrap:active {
  transform: scale(0.95);
  filter: brightness(0.95);
}

.icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 5px;
}

.top-right-icons span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

/* ===== Glassy Navbar ===== */
.glass-navbar {
  position: fixed;
  top: 34px;
  width: 100%;
  background: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  z-index: 9998;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: 120px;
}

.logo-box {
  display: flex;
  align-items: center;
}

.logo-box img {
  height: 105px;
  width: auto;
  object-fit: contain;
  margin-top: 0px;
}

.logo-box span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: -5px;
}

.nav-links {
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}

.nav-links li a,
.services-dropdown > a {
  font-size: 21px !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 10px;
}
.nav-links li a:hover {
  color: #007bff;
}

/* ===== Services Dropdown ===== */
#servicesToggle {
  font-size: 21px !important;  /* same as others */
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

#servicesToggle::after {
  content: "▼";
  font-size: 10px;
  transform: translateY(1px);
}
.services-dropdown {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-menu {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%) translateY(20px); /* centered under Services */
  display: flex;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 580px;
  gap: 40px;
  z-index: 1000;
  align-items: flex-start;
}

/* Show dropdown on hover or click */
.services-dropdown:hover .services-menu,
.services-dropdown.active .services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Layout for left & right columns */
.services-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

/* Left + right columns shared */
.services-menu .left-column li,
.services-menu .right-column li {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

/* Hover color */
.services-menu .left-column li:hover,
.services-menu .right-column li:hover {
  color: #007bff;
  cursor: pointer;
}

/* Sanitation submenu animation */
.right-column {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.services-dropdown.submenu-visible .right-column {
  display: flex;
  flex-direction: column;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Hero Section Placeholder ===== */
.hero-placeholder {
  margin-top: 160px;
  text-align: center;
  padding: 100px 20px;
  background: #f9f9f9;
}

.under-construction-heading {
  font-size: 38px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  animation: fadeZoom 1s ease forwards;
  opacity: 0;
  transform: scale(0.9);
}

@keyframes fadeZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animated-underline {
  height: 3px;
  width: 120px;
  background: #000;
  margin: 10px auto 20px auto;
  animation: underlineExpand 1s ease-in-out forwards;
}

@keyframes underlineExpand {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

.construction-subtext {
  font-size: 17px;
  color: #444;
  animation: shimmer 2s infinite linear;
  background: linear-gradient(to right, #999, #000, #999);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* ===== Footer ===== */
footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
  margin-top: 100px;
}

.footer-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.footer-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-content p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
  color: #888;
}

.footer-divider {
  display: inline-block;
  width: 1.5px;
  height: 20px;
  background-color: #e4e2e2;
  margin: 0 10px;
  vertical-align: middle;
  opacity: 0.6;
}

.hero-wrapper {
  margin-top: 110px;
}

.alexia-hero-video {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  position: relative;
}

.alexia-video-bg {
  width: 100%;
  max-height: 100vh;
  object-fit: fit;
  display: block;
}

#sanitationTrigger {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

#sanitationSubmenu {
  display: none;
  margin-top: 10px;
  padding-left: 20px;
}

#sanitationSubmenu.active {
  display: block;
}

#sanitationTrigger {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  padding: 5px 0;
}

.services-menu .left-column li,
.services-menu .left-column li a,
.services-menu .right-column li,
.services-menu .right-column li a {
  font-size: 21px !important;
  font-weight: 500 !important;
  line-height: 1.5;
  color: #000 !important;
  font-family: 'Urbanist', sans-serif !important;
  padding: 4px 0 4px 0;
}