.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
  gap: 20px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: linear-gradient(90deg, #a12727, #5b0000);
  text-decoration: none;
  box-sizing: border-box;
}

/* ICON (LEFT CIRCLE LOGO) */
.logo-icon {
  width: 70px;
  height: 70px;

  object-fit: contain;
  flex-shrink: 0;
}

/* TEXT AREA */
.logo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  line-height: 1.1;
}

/* MAIN TITLE */
.logo-text {
  color: #f3c969;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* SUB TITLE */
.logo-subtitle {
  color: #f3c969;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;

  letter-spacing: 1px;
  margin-top: 2px;
}

/* TAGLINE */
.logo-tagline {
  color: #f3c969;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;

  letter-spacing: 2px;
  margin-top: 2px;
}


/* Media queries are defined at the bottom of the file to maintain override specificity */

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2b2b2b;
  border-radius: 999px;
  transition: var(--transition);
  background: transparent;
}

.nav-link:hover,
.nav-link.active {
  color: #8b1f1f;
  background: rgba(139, 31, 31, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: #2b2b2b;
  background: transparent;
  font-weight: 600;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 999;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-item {
  padding: 10px 16px;
  color: #2b2b2b;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: rgba(139, 31, 31, 0.08);
  color: #8b1f1f;
}

.navbar-contact {
  flex-shrink: 0;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #d1a35c;
  color: #6d2e2e;
  padding: 12px 18px;
  border-radius: 14px;
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-text strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-box:hover {
  background: #fff6ea;
}

.contact-box strong {
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  background: none;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--primary);
  left: 0;
  transition: var(--transition);
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.hamburger.open {
  background: transparent;
}

.hamburger.open::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (min-width: 992px) and (max-width: 1024px) {
  .navbar-inner {
    gap: 10px;
  }

  .navbar-logo {
    padding: 8px 10px;
    gap: 8px;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
  }

  .logo-copy {
    min-width: 0;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-subtitle {
    font-size: 0.68rem;
  }

  .logo-tagline {
    font-size: 0.58rem;
    letter-spacing: 1.2px;
  }

  .navbar-contact {
    display: flex;
    flex-shrink: 0;
  }

  .contact-box {
    padding: 8px 10px;
    gap: 8px;
  }

  .contact-text strong {
    font-size: 0.75rem;
  }

  .menu-toggle {
    display: none;
  }

  .navbar-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .nav-link {
    padding: 6px 8px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  .navbar-inner {
    gap: 10px;
    padding-right: 16px;
  }

  .navbar-logo {
    padding: 8px 12px;
    gap: 10px;
    flex-shrink: 0;
    height: 80px;
  }

  .logo-icon {
    width: 55px;
    height: 55px;
  }

  .logo-copy {
    min-width: 0;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-subtitle {
    font-size: 0.72rem;
  }

  .logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 1.2px;
  }

  .navbar-contact {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 31, 31, 0.16);
    border-radius: 999px;
    width: 44px;
    height: 44px;
  }

  .navbar-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 16px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 999;
  }

  .navbar-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 70px;
    padding: 6px 10px;
    gap: 8px;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .logo-subtitle {
    font-size: 0.6rem;
  }

  .logo-tagline {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
}