.manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
}
body {
  font-family: "Manrope", sans-serif;
}
@font-face {
  font-family: "Times New Roman", Times, serif;
  src: url(../fonts/Times\ New\ Roman\ MT\ Condensed\ Regular.otf);
}
@font-face {
  font-family: "canva";
  src: url(../fonts/CanvaSans-Regular.otf);
}
.custom-navbar {
  background: #ffffff;
  padding: 12px 10px;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo {
  height: 70px;
  margin-right: 8px;
}

.brand-text {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.navbar {
  min-height: 70px;
}

.navbar-nav {
  align-items: center;
}

.menu .nav-item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.menu .nav-link {
  padding: 0 16px !important; /* THIS creates that exact wide spacing */
  font-size: 18px;
  color: #111;
  line-height: 1;
}

.menu .nav-link:hover,
.menu .nav-link.active {
  color: #000;
}
.custom-arrow {
  display: flex;
  align-items: center;
}
.custom-arrow::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid */
  font-size: 18px;
  margin-left: 6px;
  color: #c62828;
}
.custom-arrow::after {
  transition: transform 0.3s ease;
}
.dropdown-toggle::after {
  border: none !important;
}

.custom-arrow.active::after {
  transform: rotate(180deg);
}

.whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.whatsapp i {
  color: #25d366;
  font-size: 20px;
}

.whatsapp .text small {
  display: block;
  color: #666;
  line-height: 1;
}

.whatsapp .text span {
  font-weight: 600;
  color: #000;
}

.social-icons a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #c62828;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 6px;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.85;
}

/* =========================
   MOBILE NAV FIX
========================= */
@media (max-width: 991px) {
  /* Burger icon color */
  .navbar-toggler {
    border: none;
    outline: none;
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }

  /* Mobile dropdown container */
  .mobile-nav {
    background: #ffffff;
    padding: 16px 0;
    margin-top: 12px;
    border-top: 1px solid #eee;
  }

  /* Menu list becomes vertical */
  .menu {
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
  }

  .menu .nav-item {
    width: 100%;
  }

  /* Menu links */
  .menu .nav-link {
    padding: 14px 20px !important;
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Dropdown arrow alignment */
  .custom-arrow::after {
    margin-left: auto;
    font-size: 20px;
  }

  /* Dropdown menu */
  .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }

  .dropdown-menu .dropdown-item {
    padding: 10px 0;
    font-size: 14px;
  }

  /* Right section moves below menu */
  .right-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px 0;
    width: 100%;
  }

  /* WhatsApp block */
  .whatsapp {
    width: 100%;
  }

  .whatsapp .text span {
    font-size: 14px;
  }

  /* Social icons row */
  .social-icons {
    display: flex;
    gap: 10px;
  }

  .social-icons a {
    margin-left: 0;
  }
}

/* =========================
   SECTION BASE
========================= */
.loc-final {
  font-family: "Poppins", sans-serif;
  background: #f6f1eb;
}

/* =========================
   HERO
========================= */
.loc-final-hero {
  position: relative;
  /* height: 100vh; */
  background: url("../assets/images/Untitled-design-(7).jpg.jpeg") center/cover
    no-repeat;
}

.loc-final-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55)); */
}

.loc-final-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 95px;
}

.loc-final-sub {
  color: #caa86a;
  letter-spacing: 2px;
  font-size: 14px;
}

.loc-final-hero h1 {
  color: #111;
  font-size: 40px;
  font-weight: 500;
  margin: 12px 0 20px;
}

/* =========================
   BUTTON (EXACT DEPTH)
========================= */
.loc-final-btn {
  display: inline-block;
  padding: 12px 34px;
  border-radius: 999px;
  background: linear-gradient(#9c1b1b, #7f1414);
  color: #fff;
  font-size: 14px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 8px 22px rgba(0, 0, 0, 0.45);
  text-decoration: none;
}

/* =========================
   MERGE FOG
========================= */
.loc-final-merge {
  margin-top: 11%;
  padding-top: 40px;
  padding-bottom: 60px;
  /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), #f6f1eb); */
}

/* =========================
   LOCATION BAR
========================= */
.loc-final-bar {
  background: #f5f2ef;
  border-radius: 10px;
  padding: 12px 22px;
  display: flex;
  justify-content: space-around;
  gap: 26px;
  font-size: 13px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  position: relative;
  width: 71%;
  margin: auto;
}

/* =========================
   CARDS (FIXED SIZE)
========================= */
.loc-final-cards {
  position: relative;
  margin-top: 30px;
}

.loc-final-card {
  background: #fff;
  /* border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18); */
  overflow: hidden;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* FORCE IMAGE SAME SIZE */
.loc-final-img {
  height: 110px;
  width: 100%;
}

.loc-final-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT ALIGN */
.loc-final-card p {
  margin: 0;
  padding: 10px;
  font-size: 13px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   ARROWS
========================= */
.loc-final-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: #8c1d18;
  color: #fff;
  font-size: 20px;
  border: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.loc-final-arrow.left {
  left: -55px;
}
.loc-final-arrow.right {
  right: -55px;
}

/* Location cards slider fix */
.locFinalSwiper {
  padding: 20px 0;
}

.locFinalSwiper .swiper-wrapper {
  align-items: stretch;
}

.locFinalSwiper .swiper-slide {
  width: 220px; /* matches your design */
  display: flex;
  justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .loc-final-arrow {
    display: none;
  }

  .loc-final-bar {
    overflow-x: auto;
    justify-content: flex-start;
    width: 100%;
    gap: 16px;
    padding: 12px 16px;
  }

  .loc-final-bar span {
    white-space: nowrap;
  }

  .loc-final-hero h1 {
    font-size: 28px;
  }

  .loc-final-hero-content {
    padding-top: 60px;
  }

  .loc-final-merge {
    margin-top: 6%;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .loc-final-sub {
    font-size: 12px;
  }

  .loc-final-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .loc-final-hero h1 {
    font-size: 22px;
  }

  .loc-final-bar {
    gap: 12px;
    font-size: 12px;
    padding: 10px 12px;
  }

  .loc-final-card p {
    font-size: 12px;
    padding: 8px;
  }

  .loc-final-img {
    height: 90px;
  }
}

/* Utility strip  */
.footer-utility {
  background: #f6f6f6;
  border-bottom: 1px solid #e5e5e5;
}

.utility-item {
  padding: 22px;
  border-right: 1px solid #e5e5e5;
  display: flex;
}
.ml-2 {
  margin-left: 15px;
}
.utility-item:last-child {
  border-right: none;
}

.utility-item i {
  color: #e53935;
  font-size: 26px;
  margin-bottom: 10px;
}

.utility-item h6 {
  font-size: 14px;
  font-weight: 600;
}

.utility-item p {
  font-size: 12px;
  color: #666;
}
/* Main footer */
.main-footer {
  background: #000;
  color: #fff;
  padding: 60px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 40px;
}

.footer-brand span {
  background: linear-gradient(180deg, #ffffff, #c89116, #ffffff, #c89116);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 26px;
  font-family: "Times New Roman", Times, serif;
}

.footer-divider {
  border-color: #d4af37;
  margin: 20px 0 40px;
}

/* Links */
.footer-links h5,
.footer-bottom h5 {
  background: linear-gradient(180deg, #ffffff, #c89116, #ffffff, #c89116);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  margin-bottom: 14px;
  font-family: "Times New Roman", Times, serif;
}

.footer-links ul,
.footer-bottom ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-bottom li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}

/* Contact */
.contact-footer p {
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-socials i {
  background: linear-gradient(180deg, #ffffff, #c89116, #ffffff, #c89116);
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

/* Quick links box */
.quick-links-box {
  padding: 16px;
}

.quick-links-box h5 {
  background: linear-gradient(180deg, #ffffff, #c89116, #ffffff, #c89116);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Copyright */
.footer-copyright {
  background: #fbfbfb;
  text-align: center;
  padding: 14px;
  margin-top: 40px;
}

.footer-copyright p {
  font-size: 12px;
  margin: 0;
  color: #0b0b0b;
}

/* Footer responsive */
@media (max-width: 768px) {
  .utility-item {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px;
  }
  .utility-item:last-child {
    border-bottom: none;
  }
  .main-footer {
    padding: 40px 15px 0;
  }
  .footer-links h5,
  .footer-bottom h5 {
    font-size: 20px;
    margin-top: 20px;
  }
  .footer-links li,
  .footer-bottom li {
    font-size: 14px;
  }
  .footer-brand span {
    font-size: 20px;
  }
}
