/*===============
  Section: HEADER
  =============== */
.header {
  background: white;
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ======================
   MOBILE HEADER (0-799)
   ====================== */
.fdp-menu-toggle {
  display: none;
}

.fdp-hamburger {
  display: none;
}

/*===============
  Navigation 
  =============== */
.nav {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.nav a {
  text-decoration: none;
  color: #333;
  padding: 5px 3px;
}

.nav a:hover {
  color: #977959;
}

/* BUTTON */
.btn-contact .arrow {
  display: inline-flex;
  align-items: center;
}

.btn-contact .arrow svg {
  width: 13px;
  height: 13px;
  display: block;
}

.btn-contact {
  background: #B18031;
  color: white;
  font-weight: bold;
  font-size: 11px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-contact:hover {
  opacity: 0.9;
  background: #977959;
}


/* ============ */
/* Responsive = */
/* ============ */
/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
}

/* Tablet + small desktop: 768px - 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
  }

  .logo img {
    height: 36px;
  }

  .header-right {
    justify-content: center;
    width: 100%;
  }

  .nav {
    justify-content: center;
    display: flex;
    gap: 16px;
    font-size: 13px;
  }
}

/* Mobile: 1px - 767px */
@media (max-width: 767px) {
  .header-inner {
    padding: 8px 16px;
  }

  .nav {
    display: none;
  }

  .logo img {
    height: 28px;
  }

  .btn-contact {
    display: none;
  }

  .fdp-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .fdp-hamburger span {
    width: 21px;
    height: 2px;
    background: #222;
    display: block;
  }

  .fdp-mobile-menu {
    position: fixed;
    top: 56px;
    right: 1px;
    width: calc(30% - 8px);
    min-width: 160px;
    max-width: 256px;
    background: #fff;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    z-index: 999;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    align-items: flex-start;
  }

  .fdp-menu-toggle:checked ~ .fdp-mobile-menu {
    transform: translateX(0);
  }

  .fdp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 997;
  }

  .fdp-menu-toggle:checked ~ .fdp-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .fdp-mobile-menu .nav {
    display: flex;
    flex-direction: column;
  }

  .fdp-mobile-menu .btn-contact {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
}