/* === Fonts & Base === */
:root {
  /* Optional: tune your color tokens if needed */
}

html {
  scroll-behavior: smooth;
}

body {
    max-width: 90%;
    margin: 0 auto;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, "Helvetica Neue",
    Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  color: #111;
  line-height: 1.6;
}

/* Headings use Poppins */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* === Spinner === */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}
#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* Back-to-top (if used) */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/* === Buttons === */
.btn {
  font-weight: 600;
  transition: 0.3s;
}
.btn.btn-primary:hover {
  filter: brightness(0.95);
}

/* === Section Title === */
.section-title {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  color: #000;
}
.section-title .sub-style {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}
.section-title .sub-style::before,
.section-title .sub-style::after,
.sub-title::before,
.sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--bs-primary) !important;
}
.section-title .sub-style::before {
  width: 100px;
  left: 0;
  margin-top: 8px;
  margin-left: -100px;
}
.section-title .sub-style::after {
  width: 50px;
  left: 0;
  margin-left: -50px;
}
.sub-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}
.sub-title::before {
  width: 100px;
  right: 0;
  margin-top: 8px;
  margin-right: -100px;
}
.sub-title::after {
  width: 50px;
  right: 0;
  margin-right: -50px;
}

/* === Navbar === */
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-dark) !important;
  font-size: 16px;
  font-weight: 600; /* a touch stronger for clarity */
  outline: none;
  transition: 0.3s;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary) !important;
}
.navbar-light .navbar-brand img {
  max-height: 50px;
  transition: 0.3s;
}
.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

/* Desktop underline animation */
@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }
  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light) !important;
  }
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.3s;
  }
  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }
  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

/* Mobile navbar tweaks */
@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }
  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }
  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
  }
  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

/* === Hero Carousel === */
.header-carousel {
  position: relative;
}
.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  position: relative;
  width: 100%;
  height: 700px;
  margin-top: 95px;
  display: block;
  object-fit: cover;
  transition: 0.2s;
}
@media (max-width: 992px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    margin-top: 0;
  }
}

/* 
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.header-carousel .owl-nav .owl-prev {
  left: 20px;
}
.header-carousel .owl-nav .owl-next {
  right: 20px;
}
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  filter: brightness(1.1);
} */

/* === About (Location) === */
.about .about-img {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
}
.about .about-img .about-img-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  border: 10px solid var(--bs-white);
  border-radius: 50%;
}

/* === Feature / Cards === */
.feature .feature-item {
  position: relative;
  display: flex;
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.3s;
}
.feature .feature-item:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

/* === Services (Concierge Cards) === */
.service .service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.service .service-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.service .service-content::before {
  width: 100%;
  height: 8px;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: rgba(21, 185, 217, 0.5);
  transition: 0.3s;
  z-index: 3;
}
.service .service-item:hover .service-content::before {
  height: 100%;
}
@media (min-width: 768px) {
  #concierge .service-item {
    min-height: 320px;
  }
}
#concierge .service-content p {
  margin-bottom: 0;
}

/* === Units Table Cards === */
.team-content h5 {
  font-weight: 700;
}

/* === Copyright === */
.copyright {
  background: var(--bs-dark) !important;
  text-align: right;
}
